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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::SellerLevelCodeType

DESCRIPTION

Top

Indicates the user's eBay PowerSeller tier. PowerSellers are distinguished in 5 tiers based on average monthly sales. Benefits and services vary for each tier. eBay calculates eligibility for each tier monthly.

SYNOPSIS

Top

Enums:

Top

Bronze

Bronze (lowest tier)

Silver

Silver (between Bronze and Gold)

Gold

Gold (between Silver and Platinum)

Platinum

Platinum (between Gold and Titanium)

Titanium

Titanium (highest tier)

None

Not a PowerSeller (eBay has not yet evaluated your PowerSeller status, or you have not chosen to be a member of the PowerSeller program, or you lost your PowerSeller status due to a policy violation.)

CustomCode

Reserved for internal or future use


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

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

use strict;
use warnings;  

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


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



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



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



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



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



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



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







1;