| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::ExternalProductCodeType
Indicates the type of external product ID being used to identify a stock product.
ExternalProductID.Value contains an ISBN value. Required when you pass an ISBN as the external product ID. (This value is also applicable to Half.com listings.)
ExternalProductID.Value contains a UPC value. Required when you pass a UPC as the external product ID. (This value is also applicable to Half.com listings.)
ExternalProductID.Value contains an eBay catalog product ID. Required when you pass an eBay product ID as the external product ID. Not applicable with GetSearchResults, GetSearchResultsExpress, or GetProducts.
ExternalProductID.Value contains an EAN value. Required when you pass an EAN as the external product ID. Not applicable with GetSearchResultsExpress.
ExternalProductID.Value contains a set of keywords that uniquely identify the product. Only applicable when listing event ticket. See the eBay Web Services guide for information about valid ticket keywords for an external product ID. Required when you pass a set of keywords as the external product ID. Not applicable with GetSearchResults, GetSearchResultsExpress, or GetProducts. With GetSearchResults, use TicketFinder instead.
Reserved for future use.
Reserved for internal or future use
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::ExternalProductCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ExternalProductCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant ISBN => scalar('ISBN');
use constant UPC => scalar('UPC');
use constant ProductID => scalar('ProductID');
use constant EAN => scalar('EAN');
use constant Keywords => scalar('Keywords');
use constant MPN => scalar('MPN');
use constant CustomCode => scalar('CustomCode'); 1;