| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::AccountHistorySelectionCodeType
Specifies a report format to be used to describe the seller's account.
(in) Contains the entries since the last invoice eBay sent to the seller. If you use LastInvoice, then InvoiceDate, BeginDate and EndDate are ignored.
(in) Contains the entries for a specific invoice, identified by the invoice month and year. If you use SpecifiedInvoice, then you must also use InvoiceDate. If you use SpecifiedInvoice, then BeginDate and EndDate are ignored.
(in) Contains entries that were posted to the seller's account between two dates. The period covered may cross the boundaries of formal invoices. If you use BetweenSpecifiedDates, then you also must specify BeginDate and EndDate. If you use BetweenSpecifiedDates, then InvoiceDate is ignored.
(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::AccountHistorySelectionCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. AccountHistorySelectionCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant LastInvoice => scalar('LastInvoice');
use constant SpecifiedInvoice => scalar('SpecifiedInvoice');
use constant BetweenSpecifiedDates => scalar('BetweenSpecifiedDates');
use constant CustomCode => scalar('CustomCode'); 1;