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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::ListingSubtypeCodeType

DESCRIPTION

Top

Indicates a specific type of lead generation format listing (within the classified and localmarketbestofferonly subtypes, which include the general ClassifiedAd and LocalMarketBestOfferOnly subtype).

SYNOPSIS

Top

Enums:

Top

ClassifiedAd

General classified ad listing subtype.

LocalMarketBestOfferOnly

General LocalMarketBestOfferOnly listing subtype.

CustomCode

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;