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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::ItemSpecificSourceCodeType

DESCRIPTION

Top

Defines the system source for an Item Specific.

SYNOPSIS

Top

Enums:

Top

ItemSpecific

The seller defined the Item Specific by using custom Item Specifics fields. (For example, the seller used the ItemSpecifics node in AddItem.) This is the default setting if Source isn't returned.

Attribute

The seller defined the Item Specific by using eBay's system-defined (ID-based) attributes format. (For example, the seller used the AttributeSetArray node in AddItem.)

Product

The Item Specific is from a product catalog. (For example, the seller used ExternalProductID or ProductID in AddItem.)

CustomCode

Reserved for future use.


eBay-API documentation Contained in the eBay-API distribution.
#!/usr/bin/perl

package eBay::API::XML::DataType::Enum::ItemSpecificSourceCodeType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. ItemSpecificSourceCodeType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  


use constant ItemSpecific => scalar('ItemSpecific');



use constant Attribute => scalar('Attribute');



use constant Product => scalar('Product');



use constant CustomCode => scalar('CustomCode');







1;