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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::StoreCategoryUpdateActionCodeType

DESCRIPTION

Top

Specifies the type of action to carry out with SetStoreCategories.

SYNOPSIS

Top

Enums:

Top

Add

(in) Add the listed categories to the store.

Delete

(in) Delete the listed categories from the store.

Move

(in) Move the listed categories from one place in the store category structure to another.

Rename

(in) Rename the listed store categories to the names provided.

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

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. StoreCategoryUpdateActionCodeType.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 Move => scalar('Move');



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



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







1;