| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::TaskStatusCodeType
Status values for the processing progress for the category structure changes specified by a SetStoreCategories request. If the SetStoreCategories call is processed asynchronously, then the status is returned by GetStoreCategoryUpdateStatus, otherwise, the status is returned in the SetStoreCategories response.
(out) The category changes have not started.
(out) The category changes are in progress.
(out) The category changes completed successfully.
(out) The category changes failed.
(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::TaskStatusCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. TaskStatusCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Pending => scalar('Pending');
use constant InProgress => scalar('InProgress');
use constant Complete => scalar('Complete');
use constant Failed => scalar('Failed');
use constant CustomCode => scalar('CustomCode'); 1;