public enum ThreeDSAuthenticationMethod extends java.lang.Enum<ThreeDSAuthenticationMethod>
| Enum Constant and Description |
|---|
AVS_VERIFIED |
CHALLENGE_OCCURRED |
FRICTIONLESS_AUTHENTICATION |
OTHER_ISSUER_METHODS |
| Modifier and Type | Method and Description |
|---|---|
static ThreeDSAuthenticationMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ThreeDSAuthenticationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="frictionless_authentication") public static final ThreeDSAuthenticationMethod FRICTIONLESS_AUTHENTICATION
@SerializedName(value="challenge_occurred") public static final ThreeDSAuthenticationMethod CHALLENGE_OCCURRED
@SerializedName(value="avs_verified") public static final ThreeDSAuthenticationMethod AVS_VERIFIED
@SerializedName(value="other_issuer_methods") public static final ThreeDSAuthenticationMethod OTHER_ISSUER_METHODS
public static ThreeDSAuthenticationMethod[] values()
for (ThreeDSAuthenticationMethod c : ThreeDSAuthenticationMethod.values()) System.out.println(c);
public static ThreeDSAuthenticationMethod 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