JobCollectionResponse

Job Collection Response.

Properties

NameTypeDescriptionNotes
jobsList[JobResponse]
total_entriesint

Example

from airflow_client.client.models.job_collection_response import JobCollectionResponse

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

# convert the object into a dict
job_collection_response_dict = job_collection_response_instance.to_dict()
# create an instance of JobCollectionResponse from a dict
job_collection_response_from_dict = JobCollectionResponse.from_dict(job_collection_response_dict)

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