| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::StoreSubscriptionLevelCodeType
User's eBay Store subscription level.
(in) This closes your eBay Store and cancels your eBay Store subscription. All of your current Store Inventory items (if any) will end automatically. All of your current Online Auction and Fixed Price items will remain active until their ending date is reached or they are sold. All your Store pictures hosted on eBay will be deleted unless you have a Picture Manager subscription.
Basic level subscription.
Featured level subscription.
Anchor level subscription.
(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::StoreSubscriptionLevelCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. StoreSubscriptionLevelCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Close => scalar('Close');
use constant Basic => scalar('Basic');
use constant Featured => scalar('Featured');
use constant Anchor => scalar('Anchor');
use constant CustomCode => scalar('CustomCode'); 1;