| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::VeROReportPacketStatusCodeType
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.
(out) The packet has been received by eBay.
(out) The packet is being processed by eBay.
(out) The packet has been processed by eBay. Each item within the packet has a status of Removed, SubmissionFailed, or ClarificationRequired.
(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;