Name | Type | Description | Notes |
---|---|---|---|
status | JobStatus |
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)