| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::PaymentTypeCodeType
For GetSellerPayments, indicates the type of Half.com payment being made (sale or refund).
(out) The buyer paid the seller. Applicable to Half.com.
(out) The seller issued a refund to the buyer. Applicable to Half.com.
For eBay internal use.
For eBay internal use.
All other payment types.
(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::PaymentTypeCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. PaymentTypeCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Sale => scalar('Sale');
use constant Refund => scalar('Refund');
use constant SellerDeniedPayment => scalar('SellerDeniedPayment');
use constant AdminReversal => scalar('AdminReversal');
use constant AllOther => scalar('AllOther');
use constant CustomCode => scalar('CustomCode'); 1;