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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::PaymentHoldStatusCodeType

DESCRIPTION

Top

The status of payment holds.

SYNOPSIS

Top

Enums:

Top

PaymentReview

The payment hold referred to as a "payment review" hold results from a possible issue with a buyer. If this value is returned, then the following values, as a result, will be returned: In GetMyeBaySelling, NotPaid is returned in TransactionArray.Transaction.SellerPaidStatus. In GetMyeBayBuying, PaidWithPayPal is returned in TransactionArray.Transaction.BuyerPaidStatus.

MerchantHold

The payment hold referred to as a "merchant hold" results from a possible issue with a seller. If this value is returned, then the following values, as a result, will be returned: In GetMyeBaySelling, PaidWithPayPal is returned in TransactionArray.Transaction.SellerPaidStatus. In GetMyeBayBuying, PaidWithPayPal is returned in TransactionArray.Transaction.BuyerPaidStatus.

Released

Indicates that a payment hold has been released.

None

Indicates that there is no payment review hold and no merchant hold.

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

use strict;
use warnings;  

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


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



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



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



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



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







1;