Package com.stripe.param
Enum AccountUpdateParams.RequestedCapability
- java.lang.Object
-
- java.lang.Enum<AccountUpdateParams.RequestedCapability>
-
- com.stripe.param.AccountUpdateParams.RequestedCapability
-
- All Implemented Interfaces:
ApiRequestParams.EnumParam
,java.io.Serializable
,java.lang.Comparable<AccountUpdateParams.RequestedCapability>
- Enclosing class:
- AccountUpdateParams
public static enum AccountUpdateParams.RequestedCapability extends java.lang.Enum<AccountUpdateParams.RequestedCapability> implements ApiRequestParams.EnumParam
The user agent of the browser from which the account representative accepted the Stripe Services Agreement.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CARD_ISSUING
CARD_PAYMENTS
LEGACY_PAYMENTS
PLATFORM_PAYMENTS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getValue()
static AccountUpdateParams.RequestedCapability
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AccountUpdateParams.RequestedCapability[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CARD_ISSUING
@SerializedName("card_issuing") public static final AccountUpdateParams.RequestedCapability CARD_ISSUING
-
CARD_PAYMENTS
@SerializedName("card_payments") public static final AccountUpdateParams.RequestedCapability CARD_PAYMENTS
-
LEGACY_PAYMENTS
@SerializedName("legacy_payments") public static final AccountUpdateParams.RequestedCapability LEGACY_PAYMENTS
-
PLATFORM_PAYMENTS
@SerializedName("platform_payments") public static final AccountUpdateParams.RequestedCapability PLATFORM_PAYMENTS
-
-
Method Detail
-
values
public static AccountUpdateParams.RequestedCapability[] 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 (AccountUpdateParams.RequestedCapability c : AccountUpdateParams.RequestedCapability.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccountUpdateParams.RequestedCapability 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
-
-