Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 971 Bytes

TaskResult.md

File metadata and controls

31 lines (22 loc) · 971 Bytes

TaskResult

Optional result information about this task

Properties

Name Type Description Notes
url str URL returned by the task worker [optional]
error str Error returned by task worker [optional]

Example

from flat_api.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]