| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::TransactionPlatformCodeType
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.
The transaction was created on Half.com site.
The transaction was created on the Shopping.com site.
Reserved for future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::TransactionPlatformCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. TransactionPlatformCodeType.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');
use constant Half => scalar('Half');
use constant Shopping => scalar('Shopping');
use constant CustomCode => scalar('CustomCode'); 1;