| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::DepositTypeCodeType
For vehicles listed through the US eBay Motors site, DepositType indicates how the buyer should pay the deposit amount. It is used in conjunction with a buyer payment method (BuyerPaymentMethodCodeType).
(out) No deposit needed.
(out) Pay the deposit using PayPal, and then use any of the other specified payment methods to pay the balance.
(out) No longer used.
(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::DepositTypeCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. DepositTypeCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant None => scalar('None');
use constant OtherMethod => scalar('OtherMethod');
use constant FastDeposit => scalar('FastDeposit');
use constant CustomCode => scalar('CustomCode'); 1;