Skip to content

OutputErrorsInner

Properties

Name Type Description Notes
stage str [optional]
stack List[JobRuntimeErrorStackInner] [optional]

Example

from odm_api.models.output_errors_inner import OutputErrorsInner

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

# convert the object into a dict
output_errors_inner_dict = output_errors_inner_instance.to_dict()
# create an instance of OutputErrorsInner from a dict
output_errors_inner_from_dict = OutputErrorsInner.from_dict(output_errors_inner_dict)
[Back to Model list] [Back to API list] [Back to README]