| Name | Type | Description | Notes |
|---|---|---|---|
| job | JobMetadata | [optional] |
from ri.apiclient.models.get_job_response import GetJobResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetJobResponse from a JSON string
get_job_response_instance = GetJobResponse.from_json(json)
# print the JSON string representation of the object
print(GetJobResponse.to_json())
# convert the object into a dict
get_job_response_dict = get_job_response_instance.to_dict()
# create an instance of GetJobResponse from a dict
get_job_response_from_dict = GetJobResponse.from_dict(get_job_response_dict)