Package com.stripe.param
Enum InvoiceCreateParams.PaymentSettings.PaymentMethodType
- java.lang.Object
-
- java.lang.Enum<InvoiceCreateParams.PaymentSettings.PaymentMethodType>
-
- com.stripe.param.InvoiceCreateParams.PaymentSettings.PaymentMethodType
-
- All Implemented Interfaces:
ApiRequestParams.EnumParam
,java.io.Serializable
,java.lang.Comparable<InvoiceCreateParams.PaymentSettings.PaymentMethodType>
- Enclosing class:
- InvoiceCreateParams.PaymentSettings
public static enum InvoiceCreateParams.PaymentSettings.PaymentMethodType extends java.lang.Enum<InvoiceCreateParams.PaymentSettings.PaymentMethodType> implements ApiRequestParams.EnumParam
We strongly recommend that you rely on our SCA Engine to automatically prompt your customers for authentication based on risk level and other requirements. However, if you wish to request 3D Secure based on logic from your own fraud engine, provide this option. Read our guide on manually requesting 3D Secure for more information on how this configuration interacts with Radar and our SCA Engine.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACH_CREDIT_TRANSFER
ACH_DEBIT
AU_BECS_DEBIT
BACS_DEBIT
BANCONTACT
BOLETO
CARD
FPX
GIROPAY
IDEAL
SEPA_CREDIT_TRANSFER
SEPA_DEBIT
SOFORT
WECHAT_PAY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getValue()
static InvoiceCreateParams.PaymentSettings.PaymentMethodType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InvoiceCreateParams.PaymentSettings.PaymentMethodType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACH_CREDIT_TRANSFER
@SerializedName("ach_credit_transfer") public static final InvoiceCreateParams.PaymentSettings.PaymentMethodType ACH_CREDIT_TRANSFER
-
ACH_DEBIT
@SerializedName("ach_debit") public static final InvoiceCreateParams.PaymentSettings.PaymentMethodType ACH_DEBIT
-
AU_BECS_DEBIT
@SerializedName("au_becs_debit") public static final InvoiceCreateParams.PaymentSettings.PaymentMethodType AU_BECS_DEBIT
-
BACS_DEBIT
@SerializedName("bacs_debit") public static final InvoiceCreateParams.PaymentSettings.PaymentMethodType BACS_DEBIT
-
BANCONTACT
@SerializedName("bancontact") public static final InvoiceCreateParams.PaymentSettings.PaymentMethodType BANCONTACT
-
BOLETO
@SerializedName("boleto") public static final InvoiceCreateParams.PaymentSettings.PaymentMethodType BOLETO
-
CARD
@SerializedName("card") public static final InvoiceCreateParams.PaymentSettings.PaymentMethodType CARD
-
FPX
@SerializedName("fpx") public static final InvoiceCreateParams.PaymentSettings.PaymentMethodType FPX
-
GIROPAY
@SerializedName("giropay") public static final InvoiceCreateParams.PaymentSettings.PaymentMethodType GIROPAY
-
IDEAL
@SerializedName("ideal") public static final InvoiceCreateParams.PaymentSettings.PaymentMethodType IDEAL
-
SEPA_CREDIT_TRANSFER
@SerializedName("sepa_credit_transfer") public static final InvoiceCreateParams.PaymentSettings.PaymentMethodType SEPA_CREDIT_TRANSFER
-
SEPA_DEBIT
@SerializedName("sepa_debit") public static final InvoiceCreateParams.PaymentSettings.PaymentMethodType SEPA_DEBIT
-
SOFORT
@SerializedName("sofort") public static final InvoiceCreateParams.PaymentSettings.PaymentMethodType SOFORT
-
WECHAT_PAY
@SerializedName("wechat_pay") public static final InvoiceCreateParams.PaymentSettings.PaymentMethodType WECHAT_PAY
-
-
Method Detail
-
values
public static InvoiceCreateParams.PaymentSettings.PaymentMethodType[] 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 (InvoiceCreateParams.PaymentSettings.PaymentMethodType c : InvoiceCreateParams.PaymentSettings.PaymentMethodType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InvoiceCreateParams.PaymentSettings.PaymentMethodType 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
-
getValue
public java.lang.String getValue()
- Specified by:
getValue
in interfaceApiRequestParams.EnumParam
-
-