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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::BestOfferStatusCodeType

DESCRIPTION

Top

The status of the best offer.

SYNOPSIS

Top

Enums:

Top

Pending

The best offer is awaiting seller response or will naturally expire after 48 hours.

Accepted

The best offer was accepted by the seller.

Declined

The best offer was rejected by the seller.

Expired

The best offer expired after 48 hours due to no action by the seller.

Retracted

The best offer was retracted by the buyer.

AdminEnded

The best offer was ended by an administrator.

Active

Retrieve active best offers only.

Countered

Retrieve all counter best offers.

All

Retrieve all best offers (including declined offers, etc.).

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::BestOfferStatusCodeType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. BestOfferStatusCodeType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  


use constant Pending => scalar('Pending');



use constant Accepted => scalar('Accepted');



use constant Declined => scalar('Declined');



use constant Expired => scalar('Expired');



use constant Retracted => scalar('Retracted');



use constant AdminEnded => scalar('AdminEnded');



use constant Active => scalar('Active');



use constant Countered => scalar('Countered');



use constant All => scalar('All');



use constant CustomCode => scalar('CustomCode');







1;