| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::TradingRoleCodeType
A means for identifying a person's role in doing business on eBay.
Acting as buyer.
Acting as seller. For GetOrders, you can use this value to limit orders to those where the calling user is the seller.
Reserved for future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::TradingRoleCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. TradingRoleCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Buyer => scalar('Buyer');
use constant Seller => scalar('Seller');
use constant CustomCode => scalar('CustomCode'); 1;