Uses of Class
com.onfido.model.Task
-
Packages that use Task Package Description com.onfido.api com.onfido.model -
-
Uses of Task in com.onfido.api
Methods in com.onfido.api that return Task Modifier and Type Method Description TaskDefaultApi. findTask(UUID workflowRunId, String taskId)Retrieve Task A single task can be retrieved by calling this endpoint with the unique identifier of the Task and Workflow Run.Methods in com.onfido.api that return types with arguments of type Task Modifier and Type Method Description ApiResponse<Task>DefaultApi. findTaskWithHttpInfo(UUID workflowRunId, String taskId)Retrieve Task A single task can be retrieved by calling this endpoint with the unique identifier of the Task and Workflow Run.Method parameters in com.onfido.api with type arguments of type Task Modifier and Type Method Description okhttp3.CallDefaultApi. findTaskAsync(UUID workflowRunId, String taskId, ApiCallback<Task> _callback)Retrieve Task (asynchronously) A single task can be retrieved by calling this endpoint with the unique identifier of the Task and Workflow Run. -
Uses of Task in com.onfido.model
Methods in com.onfido.model that return Task Modifier and Type Method Description TaskTask. createdAt(OffsetDateTime createdAt)static TaskTask. fromJson(String jsonString)Create an instance of Task given an JSON stringTaskTask. id(String id)TaskTask. input(Object input)TaskTask. output(Object output)TaskTask. putAdditionalProperty(String key, Object value)Set the additional (undeclared) property with the specified name and value.TaskTask. taskDefId(String taskDefId)TaskTask. taskDefVersion(String taskDefVersion)TaskTask. updatedAt(OffsetDateTime updatedAt)TaskTask. workflowRunId(UUID workflowRunId)
-