Enum NotificationEventConfiguration.EventTypeEnum
- java.lang.Object
-
- java.lang.Enum<NotificationEventConfiguration.EventTypeEnum>
-
- com.adyen.model.marketpayconfiguration.NotificationEventConfiguration.EventTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<NotificationEventConfiguration.EventTypeEnum>
- Enclosing class:
- NotificationEventConfiguration
public static enum NotificationEventConfiguration.EventTypeEnum extends Enum<NotificationEventConfiguration.EventTypeEnum>
The type of event. Possible values: **ACCOUNT_CLOSED**, **ACCOUNT_CREATED**, **ACCOUNT_FUNDS_BELOW_THRESHOLD**, **ACCOUNT_HOLDER_CREATED**, **ACCOUNT_HOLDER_LIMIT_REACHED**, **ACCOUNT_HOLDER_PAYOUT**, **ACCOUNT_HOLDER_STATUS_CHANGE**, **ACCOUNT_HOLDER_STORE_STATUS_CHANGE**, **ACCOUNT_HOLDER_UPCOMING_DEADLINE**, **ACCOUNT_HOLDER_UPDATED**, **ACCOUNT_HOLDER_VERIFICATION**, **ACCOUNT_UPDATED**, **BENEFICIARY_SETUP**, **COMPENSATE_NEGATIVE_BALANCE**, **DIRECT_DEBIT_INITIATED**, **PAYMENT_FAILURE**, **REFUND_FUNDS_TRANSFER**, **REPORT_AVAILABLE**, **SCHEDULED_REFUNDS**, **TRANSFER_FUNDS**.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NotificationEventConfiguration.EventTypeEnumfromValue(String value)StringgetValue()StringtoString()static NotificationEventConfiguration.EventTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static NotificationEventConfiguration.EventTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNT_CLOSED
public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_CLOSED
-
ACCOUNT_CREATED
public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_CREATED
-
ACCOUNT_FUNDS_BELOW_THRESHOLD
public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_FUNDS_BELOW_THRESHOLD
-
ACCOUNT_HOLDER_CREATED
public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_HOLDER_CREATED
-
ACCOUNT_HOLDER_LIMIT_REACHED
public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_HOLDER_LIMIT_REACHED
-
ACCOUNT_HOLDER_MIGRATED
public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_HOLDER_MIGRATED
-
ACCOUNT_HOLDER_PAYOUT
public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_HOLDER_PAYOUT
-
ACCOUNT_HOLDER_STATUS_CHANGE
public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_HOLDER_STATUS_CHANGE
-
ACCOUNT_HOLDER_STORE_STATUS_CHANGE
public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_HOLDER_STORE_STATUS_CHANGE
-
ACCOUNT_HOLDER_UPCOMING_DEADLINE
public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_HOLDER_UPCOMING_DEADLINE
-
ACCOUNT_HOLDER_UPDATED
public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_HOLDER_UPDATED
-
ACCOUNT_HOLDER_VERIFICATION
public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_HOLDER_VERIFICATION
-
ACCOUNT_UPDATED
public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_UPDATED
-
BENEFICIARY_SETUP
public static final NotificationEventConfiguration.EventTypeEnum BENEFICIARY_SETUP
-
COMPENSATE_NEGATIVE_BALANCE
public static final NotificationEventConfiguration.EventTypeEnum COMPENSATE_NEGATIVE_BALANCE
-
DIRECT_DEBIT_INITIATED
public static final NotificationEventConfiguration.EventTypeEnum DIRECT_DEBIT_INITIATED
-
FUNDS_MIGRATED
public static final NotificationEventConfiguration.EventTypeEnum FUNDS_MIGRATED
-
PAYMENT_FAILURE
public static final NotificationEventConfiguration.EventTypeEnum PAYMENT_FAILURE
-
PENDING_CREDIT
public static final NotificationEventConfiguration.EventTypeEnum PENDING_CREDIT
-
REFUND_FUNDS_TRANSFER
public static final NotificationEventConfiguration.EventTypeEnum REFUND_FUNDS_TRANSFER
-
REPORT_AVAILABLE
public static final NotificationEventConfiguration.EventTypeEnum REPORT_AVAILABLE
-
SCHEDULED_REFUNDS
public static final NotificationEventConfiguration.EventTypeEnum SCHEDULED_REFUNDS
-
SCORE_SIGNAL_TRIGGERED
public static final NotificationEventConfiguration.EventTypeEnum SCORE_SIGNAL_TRIGGERED
-
TRANSFER_FUNDS
public static final NotificationEventConfiguration.EventTypeEnum TRANSFER_FUNDS
-
TRANSFER_NOT_PAIDOUT_TRANSFERS
public static final NotificationEventConfiguration.EventTypeEnum TRANSFER_NOT_PAIDOUT_TRANSFERS
-
-
Method Detail
-
values
public static NotificationEventConfiguration.EventTypeEnum[] 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 (NotificationEventConfiguration.EventTypeEnum c : NotificationEventConfiguration.EventTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NotificationEventConfiguration.EventTypeEnum 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<NotificationEventConfiguration.EventTypeEnum>
-
fromValue
public static NotificationEventConfiguration.EventTypeEnum fromValue(String value)
-
-