eBay::API::XML::DataType::Enum::GetAllBiddersModeCodeType - eBay::API::XML::DataType::Enum::GetAllBiddersModeCodeType documentation


eBay-API documentation Contained in the eBay-API distribution.

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::GetAllBiddersModeCodeType

DESCRIPTION

Top

Specifies which bidder information to return.

SYNOPSIS

Top

Enums:

Top

ViewAll

(in) Returns all bidders for an ended or still-active listing. It may be used by any user.

EndedListing

(in) Returns all non-winning bidders for ended listings only. It may be used only by a seller.

SecondChanceEligibleEndedListing

(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.

CustomCode

(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;