Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 917 Bytes

File metadata and controls

28 lines (20 loc) · 917 Bytes

GetJobResponse

Properties

Name Type Description Notes
job JobMetadata [optional]

Example

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)

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