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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::TradingRoleCodeType

DESCRIPTION

Top

A means for identifying a person's role in doing business on eBay.

SYNOPSIS

Top

Enums:

Top

Buyer

Acting as buyer.

Seller

Acting as seller. For GetOrders, you can use this value to limit orders to those where the calling user is the seller.

CustomCode

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;