| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::StoreCategoryUpdateActionCodeType
Specifies the type of action to carry out with SetStoreCategories.
(in) Add the listed categories to the store.
(in) Delete the listed categories from the store.
(in) Move the listed categories from one place in the store category structure to another.
(in) Rename the listed store categories to the names provided.
(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;