| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::PictureManagerActionCodeType
Specifies an action to be performed on a folder or setting in the user's Picture Manager account.
(in) Adds a folder or setting to the account.
(in) Deletes a folder or setting from the account.
(in) Renames a folder or picture.
(in) Moves a picture to another folder.
(in) Changes a subscription level.
(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::PictureManagerActionCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. PictureManagerActionCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Add => scalar('Add');
use constant Delete => scalar('Delete');
use constant Rename => scalar('Rename');
use constant Move => scalar('Move');
use constant Change => scalar('Change');
use constant CustomCode => scalar('CustomCode'); 1;