Skip to content

Files

Latest commit

 

History

History
29 lines (20 loc) · 925 Bytes

JobsGetResponse.md

File metadata and controls

29 lines (20 loc) · 925 Bytes

JobsGetResponse

Properties

Name Type Description Notes
jobs List[JobSchema]

Example

from openapi_client.models.jobs_get_response import JobsGetResponse

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

# convert the object into a dict
jobs_get_response_dict = jobs_get_response_instance.to_dict()
# create an instance of JobsGetResponse from a dict
jobs_get_response_from_dict = JobsGetResponse.from_dict(jobs_get_response_dict)

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