| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::BidderStatusCodeType
This code identifies the status of the bidder's request
Seller has approved the bidder.
Seller has denied the bidder's approval request.
Seller has not yet approved or denied the bidder (or the status is still being processed).
Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::BidderStatusCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. BidderStatusCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Approved => scalar('Approved');
use constant Denied => scalar('Denied');
use constant Pending => scalar('Pending');
use constant CustomCode => scalar('CustomCode'); 1;