| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::DigitalDeliveryEnabledCodeType
The digital delivery listing option is disabled for this category.
The digital delivery listing option is available in this category.
The digital delivery listing option is available in this category, and eBay normally displays this option by default in this category.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::DigitalDeliveryEnabledCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. DigitalDeliveryEnabledCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 07/07/2008 17:42 # API Release Number: ... 571 # ##########################################################################
use constant Disabled => scalar('Disabled');
use constant Enabled => scalar('Enabled');
use constant Promoted => scalar('Promoted');
use constant CustomCode => scalar('CustomCode'); 1;