Enum DisabledPaymentMethodsType
- java.lang.Object
-
- java.lang.Enum<DisabledPaymentMethodsType>
-
- com.checkout.handlepaymentsandpayouts.flow.paymentsessions.enums.DisabledPaymentMethodsType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DisabledPaymentMethodsType>
public enum DisabledPaymentMethodsType extends java.lang.Enum<DisabledPaymentMethodsType>
Specifies which payment method options to not present to the customer. If you specify the same payment method in this field and in enabled_payment_methods, the disabled_payment_methods value will be overridden. Any payment method options not explicitly specified in this field will be presented to the customer by default.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DisabledPaymentMethodsTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DisabledPaymentMethodsType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALIPAY_CN
@SerializedName("alipay_cn") public static final DisabledPaymentMethodsType ALIPAY_CN
-
ALIPAY_HK
@SerializedName("alipay_hk") public static final DisabledPaymentMethodsType ALIPAY_HK
-
ALMA
@SerializedName("alma") public static final DisabledPaymentMethodsType ALMA
-
APPLEPAY
@SerializedName("applepay") public static final DisabledPaymentMethodsType APPLEPAY
-
BANCONTACT
@SerializedName("bancontact") public static final DisabledPaymentMethodsType BANCONTACT
-
BENEFIT
@SerializedName("benefit") public static final DisabledPaymentMethodsType BENEFIT
-
CARD
@SerializedName("card") public static final DisabledPaymentMethodsType CARD
-
DANA
@SerializedName("dana") public static final DisabledPaymentMethodsType DANA
-
EPS
@SerializedName("eps") public static final DisabledPaymentMethodsType EPS
-
GCASH
@SerializedName("gcash") public static final DisabledPaymentMethodsType GCASH
-
GOOGLEPAY
@SerializedName("googlepay") public static final DisabledPaymentMethodsType GOOGLEPAY
-
IDEAL
@SerializedName("ideal") public static final DisabledPaymentMethodsType IDEAL
-
KAKAOPAY
@SerializedName("kakaopay") public static final DisabledPaymentMethodsType KAKAOPAY
-
KLARNA
@SerializedName("klarna") public static final DisabledPaymentMethodsType KLARNA
-
KNET
@SerializedName("knet") public static final DisabledPaymentMethodsType KNET
-
MBWAY
@SerializedName("mbway") public static final DisabledPaymentMethodsType MBWAY
-
MULTIBANCO
@SerializedName("multibanco") public static final DisabledPaymentMethodsType MULTIBANCO
-
P24
@SerializedName("p24") public static final DisabledPaymentMethodsType P24
-
PAYPAL
@SerializedName("paypal") public static final DisabledPaymentMethodsType PAYPAL
-
QPAY
@SerializedName("qpay") public static final DisabledPaymentMethodsType QPAY
-
SEPA
@SerializedName("sepa") public static final DisabledPaymentMethodsType SEPA
-
SOFORT
@SerializedName("sofort") public static final DisabledPaymentMethodsType SOFORT
-
STCPAY
@SerializedName("stcpay") public static final DisabledPaymentMethodsType STCPAY
-
TABBY
@SerializedName("tabby") public static final DisabledPaymentMethodsType TABBY
-
TAMARA
@SerializedName("tamara") public static final DisabledPaymentMethodsType TAMARA
-
TNG
@SerializedName("tng") public static final DisabledPaymentMethodsType TNG
-
TRUEMONEY
@SerializedName("truemoney") public static final DisabledPaymentMethodsType TRUEMONEY
-
-
Method Detail
-
values
public static DisabledPaymentMethodsType[] 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 (DisabledPaymentMethodsType c : DisabledPaymentMethodsType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DisabledPaymentMethodsType 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
-
-