| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::DisputeReasonCodeType
Specifies the top-level reason for the dispute and determines the values you can use for DisputeExplanation. Some values are for Item Not Received disputes and others are for Unpaid Item Process disputes.
The buyer has not paid for the item. For Unpaid Item Process disputes. Corresponds to legacy schema value 1.
The seller claims that the buyer agrees to not complete the transaction. This triggers a waiting period for buyer agreement, disagreement or no buyer response. For Unpaid Item Process disputes. Corresponds to legacy schema value 2.
The buyer did not receive the item. For Item Not Received disputes.
An option for Item Not Received disputes.
The item was returned but no refund was given.
Item was returned and seller was not paid.
Reserved for future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::DisputeReasonCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. DisputeReasonCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant BuyerHasNotPaid => scalar('BuyerHasNotPaid');
use constant TransactionMutuallyCanceled => scalar('TransactionMutuallyCanceled');
use constant ItemNotReceived => scalar('ItemNotReceived');
use constant SignificantlyNotAsDescribed => scalar('SignificantlyNotAsDescribed');
use constant NoRefund => scalar('NoRefund');
use constant ReturnPolicyUnpaidItem => scalar('ReturnPolicyUnpaidItem');
use constant CustomCode => scalar('CustomCode'); 1;