| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::ClassifiedAdPaymentMethodEnabledCodeType
Used to indicate whether the payment method will be displayed for a category belonging to the Lead Generation Format.
Display the payment method and permit checkout.
Display the payment method and suppress checkout.
Do not display the payment method.
(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::ClassifiedAdPaymentMethodEnabledCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ClassifiedAdPaymentMethodEnabledCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant EnabledWithCheckout => scalar('EnabledWithCheckout');
use constant EnabledWithoutCheckout => scalar('EnabledWithoutCheckout');
use constant NotSupported => scalar('NotSupported');
use constant CustomCode => scalar('CustomCode'); 1;