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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::RecipientRelationCodeType

DESCRIPTION

Top

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.

SYNOPSIS

Top

Enums:

Top

N1

Indicates that the recipient has one or more bids on the item; the relationship is "bidder."

N2

Indicates that the recipient has one or more best offers on the item; the relationship is "best offer buyer."

N3

Indicates that the recipient has asked the seller a question about the item; the relationship is "a member with an ASQ question."

N4

Indicates that the recipient has a postal code; the relationship is "a member with a postal code."

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