| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::SellerPaymentMethodCodeType
These are payment methods that sellers can use to pay eBay fees.
Used for all other payment methods which are not specifically listed in other columns.
Credit Card
PayPal
Direct Debit
Direct Debit, pending signature mandate
eBay Direct Pay
(out) Reserved for internal or future use
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::SellerPaymentMethodCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. SellerPaymentMethodCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant NothingOnFile => scalar('NothingOnFile');
use constant CreditCard => scalar('CreditCard');
use constant PayPal => scalar('PayPal');
use constant DirectDebit => scalar('DirectDebit');
use constant DirectDebitPendingSignatureMandate => scalar('DirectDebitPendingSignatureMandate');
use constant eBayDirectPay => scalar('eBayDirectPay');
use constant CustomCode => scalar('CustomCode'); 1;