| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::DisputeExplanationCodeType
Contains the dispute explanation, entered when the dispute was created. Provides additional information to supplement the dispute reason. The values allowed depend on the value of DisputeReason.
The buyer has not responded within the 7-day waiting period. Allowed when DisputeReason is BuyerHasNotPaid. Corresponds to legacy schema value 1.
The buyer has refused to pay. Allowed when DisputeReason is BuyerHasNotPaid. Corresponds to legacy schema value 2.
The buyer is not cleared to pay. Allowed when DisputeReason is BuyerHasNotPaid. Corresponds to legacy schema value 24.
The buyer returned the item for a refund. Allowed when DisputeReason is TransactionMutuallyCanceled. Corresponds to legacy schema value 5.
The buyer and seller were unable to resolve a disagreement over terms. Allowed when DisputeReason is TransactionMutuallyCanceled. Corresponds to legacy schema value 12.
The buyer no longer wants the item. Allowed when DisputeReason is TransactionMutuallyCanceled. Corresponds to legacy schema value 25.
The buyer made a mistake. Allowed when DisputeReason is TransactionMutuallyCanceled. Corresponds to legacy schema value 14.
The buyer requests shipment to a country that the seller does not ship to. Allowed when DisputeReason is BuyerHasNotPaid. Corresponds to legacy schema value 20. Deprecated.
The buyer requests shipment to an unconfirmed address. Allowed when DisputeReason is BuyerHasNotPaid or TransactionMutuallyCanceled. Corresponds to legacy schema value 21.
The buyer requests a payment method that the seller does not accept. Allowed when DisputeReason is BuyerHasNotPaid or TransactionMutuallyCanceled. Corresponds to legacy schema value 22. Deprecated.
The buyer is no longer a registered user. Allowed when DisputeReason is BuyerHasNotPaid. Corresponds to legacy schema value 23.
Some other reason not specified in this code list. Allowed when DisputeReason is either BuyerHasNotPaid OR TransactionMutuallyCanceled. Corresponds to legacy schema value 13.
Used when DisputeReason is ItemNotReceived or SignificantlyNotAsDescribed.
Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::DisputeExplanationCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. DisputeExplanationCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant BuyerHasNotResponded => scalar('BuyerHasNotResponded');
use constant BuyerRefusedToPay => scalar('BuyerRefusedToPay');
use constant BuyerNotClearedToPay => scalar('BuyerNotClearedToPay');
use constant BuyerReturnedItemForRefund => scalar('BuyerReturnedItemForRefund');
use constant UnableToResolveTerms => scalar('UnableToResolveTerms');
use constant BuyerNoLongerWantsItem => scalar('BuyerNoLongerWantsItem');
use constant BuyerPurchasingMistake => scalar('BuyerPurchasingMistake');
use constant ShipCountryNotSupported => scalar('ShipCountryNotSupported');
use constant ShippingAddressNotConfirmed => scalar('ShippingAddressNotConfirmed');
use constant PaymentMethodNotSupported => scalar('PaymentMethodNotSupported');
use constant BuyerNoLongerRegistered => scalar('BuyerNoLongerRegistered');
use constant OtherExplanation => scalar('OtherExplanation');
use constant Unspecified => scalar('Unspecified');
use constant CustomCode => scalar('CustomCode'); 1;