JobRuntimeError
Properties
Example
from odm_api.models.job_runtime_error import JobRuntimeError
# TODO update the JSON string below
json = "{}"
# create an instance of JobRuntimeError from a JSON string
job_runtime_error_instance = JobRuntimeError.from_json(json)
# print the JSON string representation of the object
print(JobRuntimeError.to_json())
# convert the object into a dict
job_runtime_error_dict = job_runtime_error_instance.to_dict()
# create an instance of JobRuntimeError from a dict
job_runtime_error_from_dict = JobRuntimeError.from_dict(job_runtime_error_dict)
[Back to Model list] [Back to API list] [Back to README]