Name | Type | Description | Notes |
---|---|---|---|
jobs | List[JobSchema] |
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)