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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::SellerBusinessCodeType

DESCRIPTION

Top

Type of seller account. This value is returned if the user is a business seller with a site ID of 77 (Germany), 3 (UK), 205 (Ireland) or 100 (Motors).

SYNOPSIS

Top

Enums:

Top

Undefined

Type of seller account not defined.

Private

Private seller account.

Commercial

Commercial seller account.

CustomCode


eBay-API documentation Contained in the eBay-API distribution.
#!/usr/bin/perl

package eBay::API::XML::DataType::Enum::SellerBusinessCodeType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. SellerBusinessCodeType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  


use constant Undefined => scalar('Undefined');



use constant Private => scalar('Private');



use constant Commercial => scalar('Commercial');



use constant CustomCode => scalar('CustomCode');







1;