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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::AccountStateCodeType

DESCRIPTION

Top

State of an account of an eBay user.

SYNOPSIS

Top

Enums:

Top

Active

(out) The account is active.

Pending

(out) The account has been created but is not yet active, pending additional information or processing by eBay.

Inactive

(out) The account is inactive. No new seller account entries would be posted by eBay to the account.

CustomCode

(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;