| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::BestOfferActionCodeType
Indicates the action taken by a seller for a best offer.
(in) To accept something.
(in) To decline something.
(in) To counter offer.
Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::BestOfferActionCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. BestOfferActionCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Accept => scalar('Accept');
use constant Decline => scalar('Decline');
use constant Counter => scalar('Counter');
use constant CustomCode => scalar('CustomCode'); 1;