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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::PictureManagerActionCodeType

DESCRIPTION

Top

Specifies an action to be performed on a folder or setting in the user's Picture Manager account.

SYNOPSIS

Top

Enums:

Top

Add

(in) Adds a folder or setting to the account.

Delete

(in) Deletes a folder or setting from the account.

Rename

(in) Renames a folder or picture.

Move

(in) Moves a picture to another folder.

Change

(in) Changes a subscription level.

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