Changes since
the last release

com.ebay.soap.eBLBaseComponents
Enum PaymentHoldReasonCodeType

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

public enum PaymentHoldReasonCodeType
extends Enum<PaymentHoldReasonCodeType>

Java class for PaymentHoldReasonCodeType.

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

 <simpleType name="PaymentHoldReasonCodeType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="NewSeller"/>
     <enumeration value="BelowStandardSeller"/>
     <enumeration value="EbpCaseOpen"/>
     <enumeration value="ReinstatementAfterSuspension"/>
     <enumeration value="CasualSeller"/>
     <enumeration value="NewPaypalAccountAdded"/>
     <enumeration value="NotAvailable"/>
     <enumeration value="SellerIsOnBlackList"/>
     <enumeration value="Other"/>
     <enumeration value="None"/>
     <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
BELOW_STANDARD_SELLER
          This value indicates that the buyer's payment for the order is being held by PayPal because the seller has been classified as a Below Standard seller.
CASUAL_SELLER
          This value indicates that the buyer's payment for the order is being held by PayPal because the seller is classified as a casual seller on eBay.
CUSTOM_CODE
          This value is reserved for internal or future use.
EBP_CASE_OPEN
          This value indicates that the buyer's payment for the order is being held by PayPal because an eBay Money Back Guarantee case has been filed against the order.
NEW_PAYPAL_ACCOUNT_ADDED
          This value indicates that the buyer's payment for the order is being held by PayPal because the seller's PayPal account (identified in Transaction.PayPalEmailAddress) is new and is not fully set up to receive funds.
NEW_SELLER
          This value indicates that the buyer's payment for the order is being held by PayPal because the seller is new to selling on eBay.
NONE
          This value is reserved for internal or future use.
NOT_AVAILABLE
          This value indicates that the reason for the buyer's payment for the order being held by PayPal is not known.
OTHER
          This value is returned if the reason for the buyer's payment for the order being held by PayPal cannot be classified by any of the other enumeration values.
REINSTATEMENT_AFTER_SUSPENSION
          This value indicates that the buyer's payment for the order is being held by PayPal because the seller has recently been reinstated as an active eBay seller after their account went through a suspension/restricted period.
SELLER_IS_ON_BLACK_LIST
          This value is reserved for internal or future use.
 
Method Summary
static PaymentHoldReasonCodeType fromValue(String v)
           
 String value()
           
static PaymentHoldReasonCodeType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PaymentHoldReasonCodeType[] 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

NEW_SELLER

public static final PaymentHoldReasonCodeType NEW_SELLER
This value indicates that the buyer's payment for the order is being held by PayPal because the seller is new to selling on eBay. Sellers are considered "new" until they have met all three criteria below:


BELOW_STANDARD_SELLER

public static final PaymentHoldReasonCodeType BELOW_STANDARD_SELLER
This value indicates that the buyer's payment for the order is being held by PayPal because the seller has been classified as a Below Standard seller.


EBP_CASE_OPEN

public static final PaymentHoldReasonCodeType EBP_CASE_OPEN
This value indicates that the buyer's payment for the order is being held by PayPal because an eBay Money Back Guarantee case has been filed against the order. If this value is returned, the seller can expedite the release of PayPal funds into their account by resolving the eBay Money Back Guarantee case, as indicated by a value of 'ResolveeBPCase' returned in a PaymentHoldDetails.RequiredSellerActionArray.RequiredSellerAction field.


REINSTATEMENT_AFTER_SUSPENSION

public static final PaymentHoldReasonCodeType REINSTATEMENT_AFTER_SUSPENSION
This value indicates that the buyer's payment for the order is being held by PayPal because the seller has recently been reinstated as an active eBay seller after their account went through a suspension/restricted period.

After a seller's account is suspended and then reinstated, that seller is treated as a new seller, and must meet the same requirements that a new seller must meet to get beyong the "New Seller" status.


CASUAL_SELLER

public static final PaymentHoldReasonCodeType CASUAL_SELLER
This value indicates that the buyer's payment for the order is being held by PayPal because the seller is classified as a casual seller on eBay.


NEW_PAYPAL_ACCOUNT_ADDED

public static final PaymentHoldReasonCodeType NEW_PAYPAL_ACCOUNT_ADDED
This value indicates that the buyer's payment for the order is being held by PayPal because the seller's PayPal account (identified in Transaction.PayPalEmailAddress) is new and is not fully set up to receive funds.


NOT_AVAILABLE

public static final PaymentHoldReasonCodeType NOT_AVAILABLE
This value indicates that the reason for the buyer's payment for the order being held by PayPal is not known.


SELLER_IS_ON_BLACK_LIST

public static final PaymentHoldReasonCodeType SELLER_IS_ON_BLACK_LIST
This value is reserved for internal or future use.


OTHER

public static final PaymentHoldReasonCodeType OTHER
This value is returned if the reason for the buyer's payment for the order being held by PayPal cannot be classified by any of the other enumeration values.


NONE

public static final PaymentHoldReasonCodeType NONE
This value is reserved for internal or future use.


CUSTOM_CODE

public static final PaymentHoldReasonCodeType CUSTOM_CODE
This value is reserved for internal or future use.

Method Detail

values

public static PaymentHoldReasonCodeType[] 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 (PaymentHoldReasonCodeType c : PaymentHoldReasonCodeType.values())
    System.out.println(c);

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

valueOf

public static PaymentHoldReasonCodeType 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 PaymentHoldReasonCodeType 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.