Package com.stripe.param
Enum PaymentIntentCreateParams.CaptureMethod
- java.lang.Object
-
- java.lang.Enum<PaymentIntentCreateParams.CaptureMethod>
-
- com.stripe.param.PaymentIntentCreateParams.CaptureMethod
-
- All Implemented Interfaces:
ApiRequestParams.EnumParam
,java.io.Serializable
,java.lang.Comparable<PaymentIntentCreateParams.CaptureMethod>
- Enclosing class:
- PaymentIntentCreateParams
public static enum PaymentIntentCreateParams.CaptureMethod extends java.lang.Enum<PaymentIntentCreateParams.CaptureMethod> implements ApiRequestParams.EnumParam
If specified, successful charges will be attributed to the destination account for tax reporting, and the funds from charges will be transferred to the destination account. The ID of the resulting transfer will be returned on the successful charge's `transfer` field.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getValue()
static PaymentIntentCreateParams.CaptureMethod
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PaymentIntentCreateParams.CaptureMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTOMATIC
@SerializedName("automatic") public static final PaymentIntentCreateParams.CaptureMethod AUTOMATIC
-
MANUAL
@SerializedName("manual") public static final PaymentIntentCreateParams.CaptureMethod MANUAL
-
-
Method Detail
-
values
public static PaymentIntentCreateParams.CaptureMethod[] 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 (PaymentIntentCreateParams.CaptureMethod c : PaymentIntentCreateParams.CaptureMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PaymentIntentCreateParams.CaptureMethod 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
-
-