Skip to content

TaskResult

Properties

Name Type Description Notes
result object [optional]
task_id str
task_status str

Example

from deepsearch.cps.apis.public_v2.models.task_result import TaskResult

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

# convert the object into a dict
task_result_dict = task_result_instance.to_dict()
# create an instance of TaskResult from a dict
task_result_form_dict = task_result.from_dict(task_result_dict)
[Back to Model list] [Back to API list] [Back to README]