Package com.onfido.model
Enum WebhookEventType
- java.lang.Object
-
- java.lang.Enum<WebhookEventType>
-
- com.onfido.model.WebhookEventType
-
- All Implemented Interfaces:
Serializable,Comparable<WebhookEventType>
public enum WebhookEventType extends Enum<WebhookEventType>
Gets or Sets webhook_event_type
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classWebhookEventType.Adapter
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WebhookEventTypefromValue(String value)StringgetValue()StringtoString()static voidvalidateJsonElement(com.google.gson.JsonElement jsonElement)static WebhookEventTypevalueOf(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
-
AUDIT_LOG_CREATED
public static final WebhookEventType AUDIT_LOG_CREATED
-
WATCHLIST_MONITOR_MATCHES_UPDATED
public static final WebhookEventType WATCHLIST_MONITOR_MATCHES_UPDATED
-
WORKFLOW_RUN_COMPLETED
public static final WebhookEventType WORKFLOW_RUN_COMPLETED
-
WORKFLOW_TASK_STARTED
public static final WebhookEventType WORKFLOW_TASK_STARTED
-
WORKFLOW_TASK_COMPLETED
public static final WebhookEventType WORKFLOW_TASK_COMPLETED
-
CHECK_STARTED
public static final WebhookEventType CHECK_STARTED
-
CHECK_REOPENED
public static final WebhookEventType CHECK_REOPENED
-
CHECK_WITHDRAWN
public static final WebhookEventType CHECK_WITHDRAWN
-
CHECK_COMPLETED
public static final WebhookEventType CHECK_COMPLETED
-
CHECK_FORM_COMPLETED
public static final WebhookEventType CHECK_FORM_COMPLETED
-
REPORT_WITHDRAWN
public static final WebhookEventType REPORT_WITHDRAWN
-
REPORT_RESUMED
public static final WebhookEventType REPORT_RESUMED
-
REPORT_CANCELLED
public static final WebhookEventType REPORT_CANCELLED
-
REPORT_AWAITING_APPROVAL
public static final WebhookEventType REPORT_AWAITING_APPROVAL
-
REPORT_COMPLETED
public static final WebhookEventType REPORT_COMPLETED
-
WORKFLOW_TIMELINE_FILE_CREATED
public static final WebhookEventType WORKFLOW_TIMELINE_FILE_CREATED
-
WORKFLOW_SIGNED_EVIDENCE_FILE_CREATED
public static final WebhookEventType WORKFLOW_SIGNED_EVIDENCE_FILE_CREATED
-
WORKFLOW_RUN_EVIDENCE_FOLDER_CREATED
public static final WebhookEventType WORKFLOW_RUN_EVIDENCE_FOLDER_CREATED
-
UNKNOWN_DEFAULT_OPEN_API
public static final WebhookEventType UNKNOWN_DEFAULT_OPEN_API
-
-
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(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<WebhookEventType>
-
fromValue
public static WebhookEventType fromValue(String value)
-
validateJsonElement
public static void validateJsonElement(com.google.gson.JsonElement jsonElement) throws IOException- Throws:
IOException
-
-