eBay::API::XML::DataType::Enum::GeographicExposureCodeType - eBay::API::XML::DataType::Enum::GeographicExposureCodeType documentation


eBay-API documentation Contained in the eBay-API distribution.

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::GeographicExposureCodeType

DESCRIPTION

Top

Used to indicate the listing options. Each of the subscriptions will have following options, which will define "National" vs "Local" ad format listing.

SYNOPSIS

Top

Enums:

Top

National

Seller can not opt into local exposure. It has to be national listing.

LocalOnly

Seller can have Local listings only.

LocalOptional

This will allow national and local listing.

CustomCode

(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;