Enum ExemptionType
- java.lang.Object
-
- java.lang.Enum<ExemptionType>
-
- com.checkout.handlepaymentsandpayouts.flow.paymentsessionscomplete.enums.ExemptionType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ExemptionType>
public enum ExemptionType extends java.lang.Enum<ExemptionType>
Default: "no_preference" Specifies an exemption reason for the payment to not be processed using 3D Secure authentication. For more information on 3DS exemptions, refer to our SCA compliance guide.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATA_SHARELOW_RISK_PROGRAMLOW_VALUENO_PREFERENCEOTHEROUT_OF_SCA_SCOPERECURRING_OPERATIONSCA_DELEGATIONTHREEDS_OUTAGETRANSACTION_RISK_ASSESSMENTTRUSTED_LISTINGTRUSTED_LISTING_PROMPT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExemptionTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ExemptionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOW_VALUE
@SerializedName("low_value") public static final ExemptionType LOW_VALUE
-
TRUSTED_LISTING
@SerializedName("trusted_listing") public static final ExemptionType TRUSTED_LISTING
-
TRUSTED_LISTING_PROMPT
@SerializedName("trusted_listing_prompt") public static final ExemptionType TRUSTED_LISTING_PROMPT
-
TRANSACTION_RISK_ASSESSMENT
@SerializedName("transaction_risk_assessment") public static final ExemptionType TRANSACTION_RISK_ASSESSMENT
-
THREEDS_OUTAGE
@SerializedName("3ds_outage") public static final ExemptionType THREEDS_OUTAGE
-
SCA_DELEGATION
@SerializedName("sca_delegation") public static final ExemptionType SCA_DELEGATION
-
OUT_OF_SCA_SCOPE
@SerializedName("out_of_sca_scope") public static final ExemptionType OUT_OF_SCA_SCOPE
-
LOW_RISK_PROGRAM
@SerializedName("low_risk_program") public static final ExemptionType LOW_RISK_PROGRAM
-
RECURRING_OPERATION
@SerializedName("recurring_operation") public static final ExemptionType RECURRING_OPERATION
-
DATA_SHARE
@SerializedName("data_share") public static final ExemptionType DATA_SHARE
-
OTHER
@SerializedName("other") public static final ExemptionType OTHER
-
NO_PREFERENCE
@SerializedName("no_preference") public static final ExemptionType NO_PREFERENCE
-
-
Method Detail
-
values
public static ExemptionType[] 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 (ExemptionType c : ExemptionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExemptionType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-