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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::BidderStatusCodeType

DESCRIPTION

Top

This code identifies the status of the bidder's request

SYNOPSIS

Top

Enums:

Top

Approved

Seller has approved the bidder.

Denied

Seller has denied the bidder's approval request.

Pending

Seller has not yet approved or denied the bidder (or the status is still being processed).

CustomCode

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;