| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::DisputeResolutionRecordTypeCodeType
Specifies the action taken by eBay as a result of the dispute resolution.
(out) The buyer received an Unpaid Item Strike.
(out) The buyer is suspended and unable to use the eBay site.
(out) The seller received a Final Value Fee credit.
(out) The seller's listing fee was credited.
(out) The buyer's unpaid item strike was appealed.
(out)The buyer's suspension was reversed.
(out) The seller's Final Value Fee credit was reversed.
(out) The seller's listing fee was reversed.
(out) The buyer is given a ticket.
(out) The seller did not receive a Final Value Fee credit.
(out) The buyer did not received the item, and the buyer filed a claim.
(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::DisputeResolutionRecordTypeCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. DisputeResolutionRecordTypeCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant StrikeBuyer => scalar('StrikeBuyer');
use constant SuspendBuyer => scalar('SuspendBuyer');
use constant FVFCredit => scalar('FVFCredit');
use constant InsertionFeeCredit => scalar('InsertionFeeCredit');
use constant AppealBuyerStrike => scalar('AppealBuyerStrike');
use constant UnsuspendBuyer => scalar('UnsuspendBuyer');
use constant ReverseFVFCredit => scalar('ReverseFVFCredit');
use constant ReverseInsertionFeeCredit => scalar('ReverseInsertionFeeCredit');
use constant GenerateCSTicketForSuspend => scalar('GenerateCSTicketForSuspend');
use constant FVFCreditNotGranted => scalar('FVFCreditNotGranted');
use constant ItemNotReceivedClaimFiled => scalar('ItemNotReceivedClaimFiled');
use constant CustomCode => scalar('CustomCode'); 1;