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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::ClassifiedAdBestOfferEnabledCodeType

DESCRIPTION

Top

Used to indicate whether Best Offer is enabled for a category belonging to the Classified Ad Format.

SYNOPSIS

Top

Enums:

Top

Disabled

The Best Offer feature is disabled for the category.

Enabled

The Best Offer feature is enabled for the category.

Required

The category supports the Best Offer feature only.

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