| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::SellerBusinessCodeType
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).
Type of seller account not defined.
Private seller account.
Commercial seller account.
| 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;