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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::BestOfferTypeCodeType

DESCRIPTION

Top

The offer type of the best offer.

SYNOPSIS

Top

Enums:

Top

BuyerBestOffer

The buyer has placed best offer on the item.

BuyerCounterOffer

The buyer has made a counter offer.

SellerCounterOffer

The seller has made a counter offer.

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

use strict;
use warnings;  

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


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



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



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



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







1;