| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::DisputeResolutionReasonCodeType
Defines the reason a dispute was resolved.
The dispute was not resolved.
The buyer provided proof of payment in feedback.
The buyer or seller had a technical problem with a computer.
The buyer and seller have not made contact.
The buyer or seller had a family emergency.
The buyer provided proof of payment in feedback.
The dispute was the buyer's first infraction.
The buyer and seller came to agreement.
The buyer returned the item.
The buyer reimbursed the seller's auction fees.
The seller received payment.
Some other resolution occurred.
After eBay approved payment of the claim, the claim was paid.
Reserved for future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::DisputeResolutionReasonCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. DisputeResolutionReasonCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Unresolved => scalar('Unresolved');
use constant ProofOfPayment => scalar('ProofOfPayment');
use constant ComputerTechnicalProblem => scalar('ComputerTechnicalProblem');
use constant NoContact => scalar('NoContact');
use constant FamilyEmergency => scalar('FamilyEmergency');
use constant ProofGivenInFeedback => scalar('ProofGivenInFeedback');
use constant FirstInfraction => scalar('FirstInfraction');
use constant CameToAgreement => scalar('CameToAgreement');
use constant ItemReturned => scalar('ItemReturned');
use constant BuyerPaidAuctionFees => scalar('BuyerPaidAuctionFees');
use constant SellerReceivedPayment => scalar('SellerReceivedPayment');
use constant OtherResolution => scalar('OtherResolution');
use constant ClaimPaid => scalar('ClaimPaid');
use constant CustomCode => scalar('CustomCode'); 1;