| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::BidActionCodeType
Possible bid action types or states.
Unknown.
Bid. The offer is being or was placed on a competitive-bidding listing (a Chinese or Dutch auction).
Not used.
The offer was retracted by the user who extended the offer. (This can only be done on the eBay site, not via API.)
The offer was automatically retracted. (This can only be done on the eBay site, not via API.)
The offer was cancelled. (This can only be done on the eBay site, not via API.)
The offer was automatically cancelled. (This can only be done on the eBay site, not via API.)
The offer placed was an absentee bid. (This can only be done on the eBay site, not via API.)
The offer resulted in the successful exercise of the Buy It Now option for a Chinese auction.
The offer is being or was placed on a fixed-price listing. This value is used for fixed-price listings (Basic Fixed-Price and eBay Stores Inventory listings) to purchase an item. In the case of PlaceOffer, for Chinese items with the BIN option, specify Purchase to buy an item. In the case of items listed with AutoPay, PlaceOffer can be used to bid, but not to purchase.
Reserved for future use.
If an item is best-offer enabled, use this value if a buyer is making a best offer on the item. After a buyer makes a best offer (or counter-offer, etc.), the buyer can get the status of the best offer (and of a possible seller-counter-offer, etc.) using the GetBestOffers call. See the Trading Web Services Guide for information about best-offer enabled items and about GetBestOffers.
If an item is best-offer enabled, use this value if a buyer is making a counteroffer to a seller's counteroffer.
If an item is best-offer enabled, use this value if a buyer is accepting a counteroffer of a seller.
If an item is best-offer enabled, use this value if a buyer is declining a counteroffer of a seller.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::BidActionCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. BidActionCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Unknown => scalar('Unknown');
use constant Bid => scalar('Bid');
use constant NotUsed => scalar('NotUsed');
use constant Retraction => scalar('Retraction');
use constant AutoRetraction => scalar('AutoRetraction');
use constant Cancelled => scalar('Cancelled');
use constant AutoCancel => scalar('AutoCancel');
use constant Absentee => scalar('Absentee');
use constant BuyItNow => scalar('BuyItNow');
use constant Purchase => scalar('Purchase');
use constant CustomCode => scalar('CustomCode');
use constant Offer => scalar('Offer');
use constant Counter => scalar('Counter');
use constant Accept => scalar('Accept');
use constant Decline => scalar('Decline'); 1;