Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

File metadata and controls

30 lines (21 loc) · 1 KB

TaskStatusResponse

Properties

Name Type Description Notes
status BinaryTaskStatus
log_history List[List[object]] [optional]

Example

from revengai.models.task_status_response import TaskStatusResponse

# TODO update the JSON string below
json = "{}"
# create an instance of TaskStatusResponse from a JSON string
task_status_response_instance = TaskStatusResponse.from_json(json)
# print the JSON string representation of the object
print(TaskStatusResponse.to_json())

# convert the object into a dict
task_status_response_dict = task_status_response_instance.to_dict()
# create an instance of TaskStatusResponse from a dict
task_status_response_from_dict = TaskStatusResponse.from_dict(task_status_response_dict)

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