Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

JobCollectionResponse

Job Collection Response.

Properties

NameTypeDescriptionNotes
jobsList[JobResponse]
total_entriesint

Example

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)

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