| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::BestOfferStatusCodeType
The status of the best offer.
The best offer is awaiting seller response or will naturally expire after 48 hours.
The best offer was accepted by the seller.
The best offer was rejected by the seller.
The best offer expired after 48 hours due to no action by the seller.
The best offer was retracted by the buyer.
The best offer was ended by an administrator.
Retrieve active best offers only.
Retrieve all counter best offers.
Retrieve all best offers (including declined offers, etc.).
(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::BestOfferStatusCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. BestOfferStatusCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Pending => scalar('Pending');
use constant Accepted => scalar('Accepted');
use constant Declined => scalar('Declined');
use constant Expired => scalar('Expired');
use constant Retracted => scalar('Retracted');
use constant AdminEnded => scalar('AdminEnded');
use constant Active => scalar('Active');
use constant Countered => scalar('Countered');
use constant All => scalar('All');
use constant CustomCode => scalar('CustomCode'); 1;