| Name | Type | Description | Notes |
|---|
| status | BinaryTaskStatus | | |
| log_history | List[List[object]] | | [optional] |
fromrevengai.models.task_status_responseimportTaskStatusResponse# TODO update the JSON string belowjson="{}"# create an instance of TaskStatusResponse from a JSON stringtask_status_response_instance=TaskStatusResponse.from_json(json)
# print the JSON string representation of the objectprint(TaskStatusResponse.to_json())
# convert the object into a dicttask_status_response_dict=task_status_response_instance.to_dict()
# create an instance of TaskStatusResponse from a dicttask_status_response_from_dict=TaskStatusResponse.from_dict(task_status_response_dict)[Back to Model list][Back to API list][Back to README]