| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::ClassifiedAdBestOfferEnabledCodeType
Used to indicate whether Best Offer is enabled for a category belonging to the Classified Ad Format.
The Best Offer feature is disabled for the category.
The Best Offer feature is enabled for the category.
The category supports the Best Offer feature only.
(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::ClassifiedAdBestOfferEnabledCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ClassifiedAdBestOfferEnabledCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Disabled => scalar('Disabled');
use constant Enabled => scalar('Enabled');
use constant Required => scalar('Required');
use constant CustomCode => scalar('CustomCode'); 1;