| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::GetAllBiddersModeCodeType
Specifies which bidder information to return.
(in) Returns all bidders for an ended or still-active listing. It may be used by any user.
(in) Returns all non-winning bidders for ended listings only. It may be used only by a seller.
(in) Returns all non-winning bidders for an ended listing who have not yet received a Second Chance Offer and noted interest in receiving a Second Chance Offer. It may be used only by a seller.
(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::GetAllBiddersModeCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. GetAllBiddersModeCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant ViewAll => scalar('ViewAll');
use constant EndedListing => scalar('EndedListing');
use constant SecondChanceEligibleEndedListing => scalar('SecondChanceEligibleEndedListing');
use constant CustomCode => scalar('CustomCode'); 1;