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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::DisputeResolutionReasonCodeType

DESCRIPTION

Top

Defines the reason a dispute was resolved.

SYNOPSIS

Top

Enums:

Top

Unresolved

The dispute was not resolved.

ProofOfPayment

The buyer provided proof of payment in feedback.

ComputerTechnicalProblem

The buyer or seller had a technical problem with a computer.

NoContact

The buyer and seller have not made contact.

FamilyEmergency

The buyer or seller had a family emergency.

ProofGivenInFeedback

The buyer provided proof of payment in feedback.

FirstInfraction

The dispute was the buyer's first infraction.

CameToAgreement

The buyer and seller came to agreement.

ItemReturned

The buyer returned the item.

BuyerPaidAuctionFees

The buyer reimbursed the seller's auction fees.

SellerReceivedPayment

The seller received payment.

OtherResolution

Some other resolution occurred.

ClaimPaid

After eBay approved payment of the claim, the claim was paid.

CustomCode

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;