public static enum PayoutItem.Type extends java.lang.Enum<PayoutItem.Type>
Enum Constant and Description |
---|
APP_FEE |
GOCARDLESS_FEE |
PAYMENT_CHARGED_BACK |
PAYMENT_FAILED |
PAYMENT_PAID_OUT |
PAYMENT_REFUNDED |
REFUND |
REVENUE_SHARE |
Modifier and Type | Method and Description |
---|---|
static PayoutItem.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PayoutItem.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="payment_paid_out") public static final PayoutItem.Type PAYMENT_PAID_OUT
@SerializedName(value="payment_failed") public static final PayoutItem.Type PAYMENT_FAILED
@SerializedName(value="payment_charged_back") public static final PayoutItem.Type PAYMENT_CHARGED_BACK
@SerializedName(value="payment_refunded") public static final PayoutItem.Type PAYMENT_REFUNDED
@SerializedName(value="refund") public static final PayoutItem.Type REFUND
@SerializedName(value="gocardless_fee") public static final PayoutItem.Type GOCARDLESS_FEE
@SerializedName(value="app_fee") public static final PayoutItem.Type APP_FEE
@SerializedName(value="revenue_share") public static final PayoutItem.Type REVENUE_SHARE
public static PayoutItem.Type[] values()
for (PayoutItem.Type c : PayoutItem.Type.values()) System.out.println(c);
public static PayoutItem.Type 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