Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 928 Bytes

File metadata and controls

30 lines (21 loc) · 928 Bytes

TaskResponse

Properties

Name Type Description Notes
status TaskStatus [optional]
error_message str [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]