Changes since
the last release

com.ebay.soap.eBLBaseComponents
Enum DisputeReasonCodeType

java.lang.Object
  extended by java.lang.Enum<DisputeReasonCodeType>
      extended by com.ebay.soap.eBLBaseComponents.DisputeReasonCodeType
All Implemented Interfaces:
Serializable, Comparable<DisputeReasonCodeType>

public enum DisputeReasonCodeType
extends Enum<DisputeReasonCodeType>

Java class for DisputeReasonCodeType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="DisputeReasonCodeType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="BuyerHasNotPaid"/>
     <enumeration value="TransactionMutuallyCanceled"/>
     <enumeration value="ItemNotReceived"/>
     <enumeration value="SignificantlyNotAsDescribed"/>
     <enumeration value="NoRefund"/>
     <enumeration value="ReturnPolicyUnpaidItem"/>
     <enumeration value="CustomCode"/>
   </restriction>
 </simpleType>
 
Note: Per JAXB standards, underscores are added to separate words in enumerations (e.g., PayPal becomes PAY_PAL).


Enum Constant Summary
BUYER_HAS_NOT_PAID
          The seller has opened a case against the buyer because the buyer has not paid for the order line item.
CUSTOM_CODE
          Reserved for future or internal use.
ITEM_NOT_RECEIVED
          The buyer has opened a case against the seller because the item has not been received by the buyer.
NO_REFUND
          The item was returned but no refund was given.
RETURN_POLICY_UNPAID_ITEM
          Item was returned and seller was not paid.
SIGNIFICANTLY_NOT_AS_DESCRIBED
          The buyer has opened a case against the seller because the item was received but does not match the item description in the listing.
TRANSACTION_MUTUALLY_CANCELED
          With the mutual consent of the buyer, the seller is canceling the order line item.
 
Method Summary
static DisputeReasonCodeType fromValue(String v)
           
 String value()
           
static DisputeReasonCodeType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DisputeReasonCodeType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BUYER_HAS_NOT_PAID

public static final DisputeReasonCodeType BUYER_HAS_NOT_PAID
The seller has opened a case against the buyer because the buyer has not paid for the order line item. A seller can open an Unpaid Item case as early as two days after the end of the auction listing. An exception to this rule occurs when the seller allows combined payment orders. If the seller does allow the buyer to combine orders and make one payment for those orders, the seller would not be able to open an Unpaid Item case until after the time period to combine orders expires.


TRANSACTION_MUTUALLY_CANCELED

public static final DisputeReasonCodeType TRANSACTION_MUTUALLY_CANCELED
With the mutual consent of the buyer, the seller is canceling the order line item.


ITEM_NOT_RECEIVED

public static final DisputeReasonCodeType ITEM_NOT_RECEIVED
The buyer has opened a case against the seller because the item has not been received by the buyer. A buyer can open an Item Not Received case after the Estimated Delivery Date of the item has passed, or 7 days after payment if the Estimated Delivery Date wasn't given by the seller. This value cannot be used in AddDispute.


SIGNIFICANTLY_NOT_AS_DESCRIBED

public static final DisputeReasonCodeType SIGNIFICANTLY_NOT_AS_DESCRIBED
The buyer has opened a case against the seller because the item was received but does not match the item description in the listing. A buyer can open an Item Significantly Not As Described case immediately after receiving the item. This value cannot be used in AddDispute.


NO_REFUND

public static final DisputeReasonCodeType NO_REFUND
The item was returned but no refund was given. This value cannot be used in AddDispute.


RETURN_POLICY_UNPAID_ITEM

public static final DisputeReasonCodeType RETURN_POLICY_UNPAID_ITEM
Item was returned and seller was not paid. This value cannot be used in AddDispute.


CUSTOM_CODE

public static final DisputeReasonCodeType CUSTOM_CODE
Reserved for future or internal use.

Method Detail

values

public static DisputeReasonCodeType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (DisputeReasonCodeType c : DisputeReasonCodeType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DisputeReasonCodeType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static DisputeReasonCodeType fromValue(String v)

Changes since
the last release

The information contained in this document is proprietary and confidential. Use of this information and the eBay API requires a Non-Disclosure Agreement (NDA) between the user and eBay Inc. For information regarding a qualifying NDA, contact Developer Relations: developer-relations@ebay.com
© 2004-2009 eBay Inc. All rights reserved.