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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::BuyerProtectionCodeType

DESCRIPTION

Top

Indicates the status of the item's eligibility for the Buyer Protection Program.

SYNOPSIS

Top

Enums:

Top

ItemIneligible

(out) Item is ineligible (e.g., category not applicable).

ItemEligible

(out) Item is eligible per standard criteria.

ItemMarkedIneligible

(out) Item marked ineligible per special criteria (e.g., seller's account closed).

ItemMarkedEligible

(out) Item marked eligible per other criteria.

NoCoverage

(out) For the Australia site, indicates that there is no PayPal Buyer Protection coverage. Coverage details would be in the following sections of the View Item page: the Buy Safely section and the Payment Details section.

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

use strict;
use warnings;  

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


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



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



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



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



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



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







1;