| Enum Constant and Description |
|---|
LOW_RISK_PROGRAM |
LOW_VALUE |
NONE |
OTHER |
OUT_OF_SCA_SCOPE |
RECURRING_OPERATION |
SCA_DELEGATION |
SECURE_CORPORATE_PAYMENT |
THREE_DS_OUTAGE |
TRANSACTION_RISK_ASSESSMENT |
TRUSTED_LISTING |
| Modifier and Type | Method and Description |
|---|---|
static Exemption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Exemption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="None") public static final Exemption NONE
@SerializedName(value="low_value") public static final Exemption LOW_VALUE
@SerializedName(value="recurring_operation") public static final Exemption RECURRING_OPERATION
@SerializedName(value="transaction_risk_assessment") public static final Exemption TRANSACTION_RISK_ASSESSMENT
@SerializedName(value="secure_corporate_payment") public static final Exemption SECURE_CORPORATE_PAYMENT
@SerializedName(value="trusted_listing") public static final Exemption TRUSTED_LISTING
@SerializedName(value="3ds_outage") public static final Exemption THREE_DS_OUTAGE
@SerializedName(value="sca_delegation") public static final Exemption SCA_DELEGATION
@SerializedName(value="out_of_sca_scope") public static final Exemption OUT_OF_SCA_SCOPE
@SerializedName(value="other") public static final Exemption OTHER
@SerializedName(value="low_risk_program") public static final Exemption LOW_RISK_PROGRAM
public static Exemption[] values()
for (Exemption c : Exemption.values()) System.out.println(c);
public static Exemption 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