| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::CheckoutMethodCodeType
The checkout method used by the buyer at external site.
Other Checkout Method was used.
Checkout is handled by a third party.
(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::CheckoutMethodCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. CheckoutMethodCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Other => scalar('Other');
use constant ThirdPartyCheckout => scalar('ThirdPartyCheckout');
use constant CustomCode => scalar('CustomCode'); 1;