Job Collection Response.
| Name | Type | Description | Notes |
|---|---|---|---|
| jobs | List[JobResponse] | ||
| total_entries | int |
fromairflow_client.client.models.job_collection_responseimportJobCollectionResponse# TODO update the JSON string belowjson="{}"# create an instance of JobCollectionResponse from a JSON stringjob_collection_response_instance=JobCollectionResponse.from_json(json)
# print the JSON string representation of the objectprint(JobCollectionResponse.to_json())
# convert the object into a dictjob_collection_response_dict=job_collection_response_instance.to_dict()
# create an instance of JobCollectionResponse from a dictjob_collection_response_from_dict=JobCollectionResponse.from_dict(job_collection_response_dict)