public enum CaptureIncompleteReason extends Enum<CaptureIncompleteReason>
| Enum Constant and Description |
|---|
_UNKNOWN
Unknown values will be mapped by this enum member
|
BUYER_COMPLAINT
The payer initiated a dispute for this captured payment with PayPal.
|
CHARGEBACK
The captured funds were reversed in response to the payer disputing this captured payment with the issuer of the financial instrument used to pay for this captured payment.
|
DECLINED_BY_RISK_FRAUD_FILTERS
Risk Filter set by the payee failed for the transaction.
|
ECHECK
The payer paid by an eCheck that has not yet cleared.
|
INTERNATIONAL_WITHDRAWAL
Visit your online account.
|
OTHER
No additional specific reason can be provided.
|
PENDING_REVIEW
The captured payment is pending manual review.
|
RECEIVING_PREFERENCE_MANDATES_MANUAL_ACTION
The payee has not yet set up appropriate receiving preferences for their account.
|
REFUNDED
The captured funds were refunded.
|
TRANSACTION_APPROVED_AWAITING_FUNDING
The payer must send the funds for this captured payment.
|
UNILATERAL
The payee does not have a PayPal account.
|
VERIFICATION_REQUIRED
The payee's PayPal account is not verified.
|
| Modifier and Type | Method and Description |
|---|---|
static CaptureIncompleteReason |
constructFromString(String toConvert)
Returns the enum member associated with the given string value.
|
static CaptureIncompleteReason |
fromString(String toConvert)
Returns the enum member associated with the given string value.
|
String |
toString()
Get string representation of this enum.
|
static List<String> |
toValue(List<CaptureIncompleteReason> toConvert)
Convert list of CaptureIncompleteReason values to list of string values.
|
String |
value()
Returns the string value associated with the enum member.
|
static CaptureIncompleteReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CaptureIncompleteReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CaptureIncompleteReason BUYER_COMPLAINT
public static final CaptureIncompleteReason CHARGEBACK
public static final CaptureIncompleteReason ECHECK
public static final CaptureIncompleteReason INTERNATIONAL_WITHDRAWAL
public static final CaptureIncompleteReason OTHER
public static final CaptureIncompleteReason PENDING_REVIEW
public static final CaptureIncompleteReason RECEIVING_PREFERENCE_MANDATES_MANUAL_ACTION
public static final CaptureIncompleteReason REFUNDED
public static final CaptureIncompleteReason TRANSACTION_APPROVED_AWAITING_FUNDING
public static final CaptureIncompleteReason UNILATERAL
public static final CaptureIncompleteReason VERIFICATION_REQUIRED
public static final CaptureIncompleteReason DECLINED_BY_RISK_FRAUD_FILTERS
public static final CaptureIncompleteReason _UNKNOWN
public static CaptureIncompleteReason[] values()
for (CaptureIncompleteReason c : CaptureIncompleteReason.values()) System.out.println(c);
public static CaptureIncompleteReason valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static CaptureIncompleteReason constructFromString(String toConvert) throws IOException
toConvert - String value to get enum member.IOException - when provided value is not mapped to any enum member.public static CaptureIncompleteReason fromString(String toConvert)
toConvert - String value to get enum member.public String value()
public String toString()
toString in class Enum<CaptureIncompleteReason>public static List<String> toValue(List<CaptureIncompleteReason> toConvert)
toConvert - The list of CaptureIncompleteReason values to convert.Copyright © 2025. All rights reserved.