Package com.adyen.model.marketpayaccount
Enum UpdatePayoutScheduleRequest.ActionEnum
- java.lang.Object
-
- java.lang.Enum<UpdatePayoutScheduleRequest.ActionEnum>
-
- com.adyen.model.marketpayaccount.UpdatePayoutScheduleRequest.ActionEnum
-
- All Implemented Interfaces:
Serializable,Comparable<UpdatePayoutScheduleRequest.ActionEnum>
- Enclosing class:
- UpdatePayoutScheduleRequest
public static enum UpdatePayoutScheduleRequest.ActionEnum extends Enum<UpdatePayoutScheduleRequest.ActionEnum>
Direction on how to handle any payouts that have already been scheduled. Permitted values: * `CLOSE` will close the existing batch of payouts. * `UPDATE` will reschedule the existing batch to the new schedule. * `NOTHING` (**default**) will allow the payout to proceed.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UpdatePayoutScheduleRequest.ActionEnumfromValue(String value)StringgetValue()StringtoString()static UpdatePayoutScheduleRequest.ActionEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static UpdatePayoutScheduleRequest.ActionEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLOSE
public static final UpdatePayoutScheduleRequest.ActionEnum CLOSE
-
NOTHING
public static final UpdatePayoutScheduleRequest.ActionEnum NOTHING
-
UPDATE
public static final UpdatePayoutScheduleRequest.ActionEnum UPDATE
-
-
Method Detail
-
values
public static UpdatePayoutScheduleRequest.ActionEnum[] 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 (UpdatePayoutScheduleRequest.ActionEnum c : UpdatePayoutScheduleRequest.ActionEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UpdatePayoutScheduleRequest.ActionEnum valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<UpdatePayoutScheduleRequest.ActionEnum>
-
fromValue
public static UpdatePayoutScheduleRequest.ActionEnum fromValue(String value)
-
-