Package com.flagright.api.types
Enum WebhookEventType
- java.lang.Object
-
- java.lang.Enum<WebhookEventType>
-
- com.flagright.api.types.WebhookEventType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WebhookEventType>
public enum WebhookEventType extends java.lang.Enum<WebhookEventType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static WebhookEventTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WebhookEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CASE_CLOSED
public static final WebhookEventType CASE_CLOSED
-
USER_STATE_UPDATED
public static final WebhookEventType USER_STATE_UPDATED
-
ALERT_CLOSED
public static final WebhookEventType ALERT_CLOSED
-
TRANSACTION_STATUS_UPDATED
public static final WebhookEventType TRANSACTION_STATUS_UPDATED
-
KYC_STATUS_UPDATED
public static final WebhookEventType KYC_STATUS_UPDATED
-
CASE_OPENED
public static final WebhookEventType CASE_OPENED
-
ALERT_OPENED
public static final WebhookEventType ALERT_OPENED
-
PEP_STATUS_UPDATED
public static final WebhookEventType PEP_STATUS_UPDATED
-
USER_TAGS_UPDATED
public static final WebhookEventType USER_TAGS_UPDATED
-
USER_TAGS_DELETED
public static final WebhookEventType USER_TAGS_DELETED
-
CRA_RISK_LEVEL_UPDATED
public static final WebhookEventType CRA_RISK_LEVEL_UPDATED
-
LIST_UPDATED
public static final WebhookEventType LIST_UPDATED
-
SANCTIONS_STATUS_UPDATED
public static final WebhookEventType SANCTIONS_STATUS_UPDATED
-
ADVERSE_MEDIA_STATUS_UPDATED
public static final WebhookEventType ADVERSE_MEDIA_STATUS_UPDATED
-
CASE_ESCALATED
public static final WebhookEventType CASE_ESCALATED
-
ALERT_ESCALATED
public static final WebhookEventType ALERT_ESCALATED
-
-
Method Detail
-
values
public static WebhookEventType[] 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 (WebhookEventType c : WebhookEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebhookEventType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<WebhookEventType>
-
-