| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::GeographicExposureCodeType
Used to indicate the listing options. Each of the subscriptions will have following options, which will define "National" vs "Local" ad format listing.
Seller can not opt into local exposure. It has to be national listing.
Seller can have Local listings only.
This will allow national and local listing.
(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::GeographicExposureCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. GeographicExposureCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant National => scalar('National');
use constant LocalOnly => scalar('LocalOnly');
use constant LocalOptional => scalar('LocalOptional');
use constant CustomCode => scalar('CustomCode'); 1;