| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::VeROReportItems
eBay::API::XML::Call::VeROReportItems inherits from the eBay::API::XML::BaseCall class
Container (packet) for items being reported. You can report the same item more than once in a packet if a different reason code is used each time.
RequiredInput: No # Argument: 'ns:VeROReportItemsType'
User ID of the VeRO member reporting the items.
RequiredInput: Yes # Argument: 'ns:UserIDType'
A unique packet identifier for the items reported.
Returned: Conditionally # Returns: 'xs:long'
The processing status of the packet.
Returned: Conditionally # Returns: 'ns:VeROReportPacketStatusCodeType'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::Call::VeROReportItems; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. VeROReportItems.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::BaseCall; our @ISA = ("eBay::API::XML::BaseCall"); use eBay::API::XML::Call::VeROReportItems::VeROReportItemsRequestType; use eBay::API::XML::Call::VeROReportItems::VeROReportItemsResponseType;
sub getApiCallName { return 'VeROReportItems'; } sub getRequestDataTypeFullPackage { return 'eBay::API::XML::Call::VeROReportItems::VeROReportItemsRequestType'; } sub getResponseDataTypeFullPackage { return 'eBay::API::XML::Call::VeROReportItems::VeROReportItemsResponseType'; } # # input properties #
sub setReportItems { my $self = shift; my $pReportItems = shift; $self->getRequestDataType()->setReportItems($pReportItems); }
sub setRightsOwnerID { my $self = shift; my $pRightsOwnerID = shift; $self->getRequestDataType()->setRightsOwnerID($pRightsOwnerID); } # # output properties #
sub getVeROReportPacketID { my $self = shift; return $self->getResponseDataType()->getVeROReportPacketID(); }
sub getVeROReportPacketStatus { my $self = shift; return $self->getResponseDataType()->getVeROReportPacketStatus(); } 1;