Enum PayoutSettings.PriorityEnum

  • All Implemented Interfaces:
    Serializable, Comparable<PayoutSettings.PriorityEnum>
    Enclosing class:
    PayoutSettings

    public static enum PayoutSettings.PriorityEnum
    extends Enum<PayoutSettings.PriorityEnum>
    Determines how long it takes for the funds to reach the bank account. Adyen pays out based on the [payout frequency](https://docs.adyen.com/account/getting-paid#payout-frequency). Depending on the currencies and banks involved in transferring the money, it may take up to three days for the payout funds to arrive in the bank account. Possible values: * **first**: same day. * **urgent**: the next day. * **normal**: between 1 and 3 days.
    • Method Detail

      • values

        public static PayoutSettings.PriorityEnum[] 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 (PayoutSettings.PriorityEnum c : PayoutSettings.PriorityEnum.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static PayoutSettings.PriorityEnum 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 name
        NullPointerException - if the argument is null
      • getValue

        public String getValue()