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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::AckCodeType

DESCRIPTION

Top

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.

SYNOPSIS

Top

Enums:

Top

Success

(out) Request processing succeeded

Failure

(out) Request processing failed

Warning

(out) Request processing completed with warning information being included in the response message

PartialFailure

(out) Request processing completed with some failures. See the Errors data to determine which portions of the request failed.

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