Output¶
job execution output
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| status | str | current job status | |
| result | object | job result object (available if job completed successfully) | [optional] |
| errors | List[OutputErrorsInner] | array of errors occurred during execution of the job (available if job failed) | [optional] |
Example¶
from odm_api.models.output import Output
# TODO update the JSON string below
json = "{}"
# create an instance of Output from a JSON string
output_instance = Output.from_json(json)
# print the JSON string representation of the object
print(Output.to_json())
# convert the object into a dict
output_dict = output_instance.to_dict()
# create an instance of Output from a dict
output_from_dict = Output.from_dict(output_dict)