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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::TransactionPlatformCodeType

DESCRIPTION

Top

Specifies the site on which the purchase was made.

SYNOPSIS

Top

Enums:

Top

eBay

The transaction was created (i.e., the purchase was made) on the main eBay site.

Express

The transaction was created on the eBay Express site.

Half

The transaction was created on Half.com site.

Shopping

The transaction was created on the Shopping.com site.

CustomCode

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;