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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::PaymentTypeCodeType

DESCRIPTION

Top

For GetSellerPayments, indicates the type of Half.com payment being made (sale or refund).

SYNOPSIS

Top

Enums:

Top

Sale

(out) The buyer paid the seller. Applicable to Half.com.

Refund

(out) The seller issued a refund to the buyer. Applicable to Half.com.

SellerDeniedPayment

For eBay internal use.

AdminReversal

For eBay internal use.

AllOther

All other payment types.

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