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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::RefundTypeCodeType

DESCRIPTION

Top

Explanation of the reason that the refund is being issued. Applicable to Half.com refunds only.

SYNOPSIS

Top

Enums:

Top

Full

The seller has issued a refund for the transaction price that was originally paid to the seller. (The seller's shipping reimbursement is not included if Half.com calculates the refund amount).

FullPlusShipping

The seller has issued a refund for the transaction price and shipping reimbursement that was originally paid to the seller. (The buyer's return shipping costs might not be included if Half.com calculates the refund amount.)

CustomOrPartial

The seller has issued a refund amount that is different from the full refund (with or without shipping). If specified, it may be helpful to explain the amount in your note to the buyer.

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

use strict;
use warnings;  

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


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



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



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



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







1;