public static enum AccountUpdateParams.RequestedCapability extends java.lang.Enum<AccountUpdateParams.RequestedCapability> implements ApiRequestParams.EnumParam
Enum Constant and Description |
---|
CARD_ISSUING |
CARD_PAYMENTS |
LEGACY_PAYMENTS |
TRANSFERS |
Modifier and Type | Method and 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.
|
@SerializedName(value="card_issuing") public static final AccountUpdateParams.RequestedCapability CARD_ISSUING
@SerializedName(value="card_payments") public static final AccountUpdateParams.RequestedCapability CARD_PAYMENTS
@SerializedName(value="legacy_payments") public static final AccountUpdateParams.RequestedCapability LEGACY_PAYMENTS
@SerializedName(value="transfers") public static final AccountUpdateParams.RequestedCapability TRANSFERS
public static AccountUpdateParams.RequestedCapability[] values()
for (AccountUpdateParams.RequestedCapability c : AccountUpdateParams.RequestedCapability.values()) System.out.println(c);
public static AccountUpdateParams.RequestedCapability valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getValue()
getValue
in interface ApiRequestParams.EnumParam