| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::TransactionPlatformType
Specifies the site on which the purchase was made.
The transaction was created (i.e., the purchase was made) on the main eBay site.
The transaction was created on the eBay Express site.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::TransactionPlatformType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. TransactionPlatformType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant eBay => scalar('eBay');
use constant Express => scalar('Express'); 1;