| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::SellerLevelCodeType
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.
Bronze (lowest tier)
Silver (between Bronze and Gold)
Gold (between Silver and Platinum)
Platinum (between Gold and Titanium)
Titanium (highest tier)
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.)
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;