| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::PictureManagerSubscriptionLevelCodeType
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.
(out) Free to Stores users.
(out) 10 MB of storage.
(out) 50 MB of storage.
(out) 125 MB of storage.
(out) 300 MB of storage.
(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;