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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::RefundReasonCodeType

DESCRIPTION

Top

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

SYNOPSIS

Top

Enums:

Top

CannotShipProduct

Seller is unable to ship the product to the buyer.

WrongItemShipped

Seller shipped the wrong item to the buyer.

ItemBadQuality

The buyer returned the item due to its quality.

ItemDamaged

The buyer returned the item due to damage.

BuyerRemorse

The buyer decided they did not want the item.

Other

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

use strict;
use warnings;  

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


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



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



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



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



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



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



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







1;