| Name | Type | Description | Notes |
|---|---|---|---|
| status | TaskStatus | [optional] | |
| error_message | str | [optional] |
fromrevengai.models.task_responseimportTaskResponse# TODO update the JSON string belowjson="{}"# create an instance of TaskResponse from a JSON stringtask_response_instance=TaskResponse.from_json(json)
# print the JSON string representation of the objectprint(TaskResponse.to_json())
# convert the object into a dicttask_response_dict=task_response_instance.to_dict()
# create an instance of TaskResponse from a dicttask_response_from_dict=TaskResponse.from_dict(task_response_dict)