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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::StoreSubscriptionLevelCodeType

DESCRIPTION

Top

User's eBay Store subscription level.

SYNOPSIS

Top

Enums:

Top

Close

(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

Basic level subscription.

Anchor

Anchor level subscription.

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