public enum Permission extends java.lang.Enum<Permission>
| Enum Constant and Description |
|---|
MERCHANT_CHECKOUT
Merchant checkout permission.
|
PCI
Pci permission.
|
THREEDSECURE_DISABLED
Threedsecure disabled permission.
|
| Modifier and Type | Method and Description |
|---|---|
static Permission |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Permission[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="pci") public static final Permission PCI
@SerializedName(value="merchant_checkout") public static final Permission MERCHANT_CHECKOUT
@SerializedName(value="threeDSecure_disabled") public static final Permission THREEDSECURE_DISABLED
public static Permission[] values()
for (Permission c : Permission.values()) System.out.println(c);
public static Permission 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 null