| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::AckCodeType
This code identifies the acknowledgement code types that eBay could use to communicate the status of processing a (request) message to an application. This code would be used as part of a response message that contains an application-level acknowledgement element.
(out) Request processing succeeded
(out) Request processing failed
(out) Request processing completed with warning information being included in the response message
(out) Request processing completed with some failures. See the Errors data to determine which portions of the request 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::AckCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. AckCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Success => scalar('Success');
use constant Failure => scalar('Failure');
use constant Warning => scalar('Warning');
use constant PartialFailure => scalar('PartialFailure');
use constant CustomCode => scalar('CustomCode'); 1;