Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.08 KB

File metadata and controls

33 lines (25 loc) · 1.08 KB

JobPatch

Properties

Name Type Description Notes
status JobStatus
session_id str [optional] [default to '']
trace_id str [optional] [default to '']
message str [optional] [default to '']
source str [optional] [default to '']
traceback str [optional] [default to '']

Example

from compute_api_client.models.job_patch import JobPatch

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

# convert the object into a dict
job_patch_dict = job_patch_instance.to_dict()
# create an instance of JobPatch from a dict
job_patch_form_dict = job_patch.from_dict(job_patch_dict)

[Back to Model list] [Back to API list] [Back to README]