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

NameTypeDescriptionNotes
statusTaskStatus[optional]
error_messagestr[optional]

Example

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)

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