| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::ListingSubtypeCodeType
Indicates a specific type of lead generation format listing (within the classified and localmarketbestofferonly subtypes, which include the general ClassifiedAd and LocalMarketBestOfferOnly subtype).
General classified ad listing subtype.
General LocalMarketBestOfferOnly listing subtype.
Reserved for internal or future use
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::ListingSubtypeCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ListingSubtypeCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant ClassifiedAd => scalar('ClassifiedAd');
use constant LocalMarketBestOfferOnly => scalar('LocalMarketBestOfferOnly');
use constant CustomCode => scalar('CustomCode'); 1;