Skip to content

JobRuntimeErrorStackInner

Properties

Name Type Description Notes
type str [optional]
message str [optional]

Example

from odm_api.models.job_runtime_error_stack_inner import JobRuntimeErrorStackInner

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

# convert the object into a dict
job_runtime_error_stack_inner_dict = job_runtime_error_stack_inner_instance.to_dict()
# create an instance of JobRuntimeErrorStackInner from a dict
job_runtime_error_stack_inner_from_dict = JobRuntimeErrorStackInner.from_dict(job_runtime_error_stack_inner_dict)
[Back to Model list] [Back to API list] [Back to README]