| Name | Type | Description | Notes |
|---|---|---|---|
| status | TaskStatus | [optional] | |
| error_message | str | [optional] |
from revengai.models.task_response import TaskResponse
# TODO update the JSON string below
json = "{}"
# create an instance of TaskResponse from a JSON string
task_response_instance = TaskResponse.from_json(json)
# print the JSON string representation of the object
print(TaskResponse.to_json())
# convert the object into a dict
task_response_dict = task_response_instance.to_dict()
# create an instance of TaskResponse from a dict
task_response_from_dict = TaskResponse.from_dict(task_response_dict)