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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::PictureManagerSubscriptionLevelCodeType

DESCRIPTION

Top

Specifies the level of the authenticated user's Picture Manager subscription. Each level has a monthly fee (except "Free") and provides a certain amount of storage space.

SYNOPSIS

Top

Enums:

Top

Free

(out) Free to Stores users.

Level1

(out) 10 MB of storage.

Level2

(out) 50 MB of storage.

Level3

(out) 125 MB of storage.

Level4

(out) 300 MB of storage.

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

use strict;
use warnings;  

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


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



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



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



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



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



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







1;