Enum NotificationEventConfiguration.EventTypeEnum
- java.lang.Object
-
- java.lang.Enum<NotificationEventConfiguration.EventTypeEnum>
-
- com.adyen.model.marketpay.notification.NotificationEventConfiguration.EventTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<NotificationEventConfiguration.EventTypeEnum>
- Enclosing class:
- NotificationEventConfiguration
public static enum NotificationEventConfiguration.EventTypeEnum extends Enum<NotificationEventConfiguration.EventTypeEnum>
type of the events triggering the notification
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description 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
@SerializedName("ACCOUNT_CLOSED") public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_CLOSED
-
ACCOUNT_FUNDS_BELOW_THRESHOLD
@SerializedName("ACCOUNT_FUNDS_BELOW_THRESHOLD") public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_FUNDS_BELOW_THRESHOLD
-
ACCOUNT_HOLDER_STORE_STATUS_CHANGE
@SerializedName("ACCOUNT_HOLDER_STORE_STATUS_CHANGE") public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_HOLDER_STORE_STATUS_CHANGE
-
ACCOUNT_HOLDER_UPCOMING_DEADLINE
@SerializedName("ACCOUNT_HOLDER_UPCOMING_DEADLINE") public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_HOLDER_UPCOMING_DEADLINE
-
ACCOUNT_CREATED
@SerializedName("ACCOUNT_CREATED") public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_CREATED
-
ACCOUNT_HOLDER_CREATED
@SerializedName("ACCOUNT_HOLDER_CREATED") public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_HOLDER_CREATED
-
ACCOUNT_HOLDER_LIMIT_REACHED
@SerializedName("ACCOUNT_HOLDER_LIMIT_REACHED") public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_HOLDER_LIMIT_REACHED
-
ACCOUNT_HOLDER_PAYOUT
@SerializedName("ACCOUNT_HOLDER_PAYOUT") public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_HOLDER_PAYOUT
-
ACCOUNT_HOLDER_STATUS_CHANGE
@SerializedName("ACCOUNT_HOLDER_STATUS_CHANGE") public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_HOLDER_STATUS_CHANGE
-
ACCOUNT_HOLDER_UPDATED
@SerializedName("ACCOUNT_HOLDER_UPDATED") public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_HOLDER_UPDATED
-
ACCOUNT_HOLDER_VERIFICATION
@SerializedName("ACCOUNT_HOLDER_VERIFICATION") public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_HOLDER_VERIFICATION
-
ACCOUNT_UPDATED
@SerializedName("ACCOUNT_UPDATED") public static final NotificationEventConfiguration.EventTypeEnum ACCOUNT_UPDATED
-
BENEFICIARY_SETUP
@SerializedName("BENEFICIARY_SETUP") public static final NotificationEventConfiguration.EventTypeEnum BENEFICIARY_SETUP
-
COMPENSATE_NEGATIVE_BALANCE
@SerializedName("COMPENSATE_NEGATIVE_BALANCE") public static final NotificationEventConfiguration.EventTypeEnum COMPENSATE_NEGATIVE_BALANCE
-
DIRECT_DEBIT_INITIATED
@SerializedName("DIRECT_DEBIT_INITIATED") public static final NotificationEventConfiguration.EventTypeEnum DIRECT_DEBIT_INITIATED
-
PAYMENT_FAILURE
@SerializedName("PAYMENT_FAILURE") public static final NotificationEventConfiguration.EventTypeEnum PAYMENT_FAILURE
-
REFUND_FUNDS_TRANSFER
@SerializedName("REFUND_FUNDS_TRANSFER") public static final NotificationEventConfiguration.EventTypeEnum REFUND_FUNDS_TRANSFER
-
REPORT_AVAILABLE
@SerializedName("REPORT_AVAILABLE") public static final NotificationEventConfiguration.EventTypeEnum REPORT_AVAILABLE
-
SCHEDULED_REFUNDS
@SerializedName("SCHEDULED_REFUNDS") public static final NotificationEventConfiguration.EventTypeEnum SCHEDULED_REFUNDS
-
TRANSFER_FUNDS
@SerializedName("TRANSFER_FUNDS") public static final NotificationEventConfiguration.EventTypeEnum TRANSFER_FUNDS
-
TRANSFER_NOT_PAIDOUT_TRANSFERS
@SerializedName("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
-
toString
public String toString()
- Overrides:
toStringin classEnum<NotificationEventConfiguration.EventTypeEnum>
-
-