public static enum EventService.EventListRequest.Include extends java.lang.Enum<EventService.EventListRequest.Include>
| Enum Constant and Description |
|---|
MANDATE |
PAYMENT |
PAYOUT |
REFUND |
SUBSCRIPTION |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static EventService.EventListRequest.Include |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventService.EventListRequest.Include[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="payment") public static final EventService.EventListRequest.Include PAYMENT
@SerializedName(value="mandate") public static final EventService.EventListRequest.Include MANDATE
@SerializedName(value="payout") public static final EventService.EventListRequest.Include PAYOUT
@SerializedName(value="refund") public static final EventService.EventListRequest.Include REFUND
@SerializedName(value="subscription") public static final EventService.EventListRequest.Include SUBSCRIPTION
public static EventService.EventListRequest.Include[] values()
for (EventService.EventListRequest.Include c : EventService.EventListRequest.Include.values()) System.out.println(c);
public static EventService.EventListRequest.Include 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 toString()
toString in class java.lang.Enum<EventService.EventListRequest.Include>