public enum ChallengeCancelReason extends java.lang.Enum<ChallengeCancelReason>
| Enum Constant and Description |
|---|
CARDHOLDER_CANCEL |
CHALLENGE_TIMED_OUT |
SDK_TIMED_OUT |
TRANSACTION_ERROR |
TRANSACTION_TIMED_OUT |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static ChallengeCancelReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChallengeCancelReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="cardholder_cancel") public static final ChallengeCancelReason CARDHOLDER_CANCEL
@SerializedName(value="transaction_timed_out") public static final ChallengeCancelReason TRANSACTION_TIMED_OUT
@SerializedName(value="challenge_timed_out") public static final ChallengeCancelReason CHALLENGE_TIMED_OUT
@SerializedName(value="transaction_error") public static final ChallengeCancelReason TRANSACTION_ERROR
@SerializedName(value="sdk_timed_out") public static final ChallengeCancelReason SDK_TIMED_OUT
@SerializedName(value="unknown") public static final ChallengeCancelReason UNKNOWN
public static ChallengeCancelReason[] values()
for (ChallengeCancelReason c : ChallengeCancelReason.values()) System.out.println(c);
public static ChallengeCancelReason valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null