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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::VeROReportPacketStatusCodeType

DESCRIPTION

Top

The status of a set of items (packet) reported for infringement. Packet states are based on the states of the reported items within the packet.

SYNOPSIS

Top

Enums:

Top

Received

(out) The packet has been received by eBay.

InProcess

(out) The packet is being processed by eBay.

Processed

(out) The packet has been processed by eBay. Each item within the packet has a status of Removed, SubmissionFailed, or ClarificationRequired.

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

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. VeROReportPacketStatusCodeType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  


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



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



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



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







1;