You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The host that originated the request. Future calls in the same conversation may be routed to this host.
[optional]
status
str
The status of the specified task. Must be either 'PENDING' (The Task has been recieved and is pending processing), 'IN_PROGRESS' (The task is currently in progress), 'COMPLETED' (The task was completed successfully) or 'FAILED' The task was processed but failed to complete successfully.
[optional]
Example
fromopenapi_client.models.get_task_status_response_schemaimportGetTaskStatusResponseSchema# TODO update the JSON string belowjson="{}"# create an instance of GetTaskStatusResponseSchema from a JSON stringget_task_status_response_schema_instance=GetTaskStatusResponseSchema.from_json(json)
# print the JSON string representation of the objectprint(GetTaskStatusResponseSchema.to_json())
# convert the object into a dictget_task_status_response_schema_dict=get_task_status_response_schema_instance.to_dict()
# create an instance of GetTaskStatusResponseSchema from a dictget_task_status_response_schema_from_dict=GetTaskStatusResponseSchema.from_dict(get_task_status_response_schema_dict)