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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::ItemSpecificsEnabledCodeType

DESCRIPTION

Top

Used to indicate whether custom Item Specifics are enabled for a category.

SYNOPSIS

Top

Enums:

Top

Disabled

The custom Item Specifics feature is disabled for the category.

Enabled

The custom Item Specifics feature is enabled for the category.

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

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. ItemSpecificsEnabledCodeType.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 CustomCode => scalar('CustomCode');







1;