| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::RecipientRelationCodeType
A seller can make a Transaction Confirmation Request (TCR) for an item. This code list contains values to specify the current relationship between the seller and the potential buyer. For a seller to make a Transaction Confirmation Request (TCR) for an item, the potential buyer must meet one of the criteria in this code list.
Indicates that the recipient has one or more bids on the item; the relationship is "bidder."
Indicates that the recipient has one or more best offers on the item; the relationship is "best offer buyer."
Indicates that the recipient has asked the seller a question about the item; the relationship is "a member with an ASQ question."
Indicates that the recipient has a postal code; the relationship is "a member with a postal code."
Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::RecipientRelationCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. RecipientRelationCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant N1 => scalar('1');
use constant N2 => scalar('2');
use constant N3 => scalar('3');
use constant N4 => scalar('4');
use constant CustomCode => scalar('CustomCode'); 1;