| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::RefundReasonCodeType
Explanation of the reason that the refund is being issued. Applicable to Half.com refunds only.
Seller is unable to ship the product to the buyer.
Seller shipped the wrong item to the buyer.
The buyer returned the item due to its quality.
The buyer returned the item due to damage.
The buyer decided they did not want the item.
(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;