Package com.onfido.models
Class WorkflowRun
- java.lang.Object
-
- com.onfido.models.WorkflowRun
-
public final class WorkflowRun extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classWorkflowRun.Request
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetApplicantId()The unique identifier for the applicantjava.time.OffsetDateTimegetCreatedAt()The date and time when the workflow run was createdStringgetDashboardUrl()The URL for viewing the workflow run results on your Onfido DashboardMap<String,Object>getError()Error object, only set when the workflow run status is errorStringgetId()The unique identifier for the workflow runMap<String,Object>getLink()Link objectMap<String,Object>getOutput()Output object contains all of the properties configured on the workflow versionList<String>getReasons()The reasons the workflow run outcome was reachedStringgetStatus()The status of the workflow run.List<String>getTags()Array of tags being assigned to this workflow run.java.time.OffsetDateTimegetUpdatedAt()The date and time when the workflow run was last updatedStringgetWorkflowId()The unique identifier for the workflowStringgetWorkflowVersionId()The unique identifier for the workflow versioninthashCode()static WorkflowRun.Requestrequest()StringtoString()
-
-
-
Method Detail
-
request
public static WorkflowRun.Request request()
-
getId
public String getId()
The unique identifier for the workflow run- Returns:
- The unique identifier for the workflow run
-
getApplicantId
public String getApplicantId()
The unique identifier for the applicant- Returns:
- The unique identifier for the applicant
-
getWorkflowId
public String getWorkflowId()
The unique identifier for the workflow- Returns:
- The unique identifier for the workflow
-
getWorkflowVersionId
public String getWorkflowVersionId()
The unique identifier for the workflow version- Returns:
- The unique identifier for the workflow version
-
getStatus
public String getStatus()
The status of the workflow run.- Returns:
- The status of the workflow run.
-
getDashboardUrl
public String getDashboardUrl()
The URL for viewing the workflow run results on your Onfido Dashboard- Returns:
- The URL for viewing the workflow run results on your Onfido Dashboard
-
getOutput
public Map<String,Object> getOutput()
Output object contains all of the properties configured on the workflow version- Returns:
- Output object contains all of the properties configured on the workflow version
-
getReasons
public List<String> getReasons()
The reasons the workflow run outcome was reached- Returns:
- The reasons the workflow run outcome was reached
-
getError
public Map<String,Object> getError()
Error object, only set when the workflow run status is error- Returns:
- Error object, only set when the workflow run status is error
-
getCreatedAt
public java.time.OffsetDateTime getCreatedAt()
The date and time when the workflow run was created- Returns:
- The date and time when the workflow run was created
-
getUpdatedAt
public java.time.OffsetDateTime getUpdatedAt()
The date and time when the workflow run was last updated- Returns:
- The date and time when the workflow run was last updated
-
getTags
public List<String> getTags()
Array of tags being assigned to this workflow run.- Returns:
- Array of tags being assigned to this workflow run.
-
-