| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::AccountStateCodeType
State of an account of an eBay user.
(out) The account is active.
(out) The account has been created but is not yet active, pending additional information or processing by eBay.
(out) The account is inactive. No new seller account entries would be posted by eBay to the account.
(out) Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::AccountStateCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. AccountStateCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Active => scalar('Active');
use constant Pending => scalar('Pending');
use constant Inactive => scalar('Inactive');
use constant CustomCode => scalar('CustomCode'); 1;