ConnectionCollectionResponse

Connection Collection serializer for responses.

Properties

NameTypeDescriptionNotes
connectionsList[ConnectionResponse]
total_entriesint

Example

from airflow_client.client.models.connection_collection_response import ConnectionCollectionResponse

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

# convert the object into a dict
connection_collection_response_dict = connection_collection_response_instance.to_dict()
# create an instance of ConnectionCollectionResponse from a dict
connection_collection_response_from_dict = ConnectionCollectionResponse.from_dict(connection_collection_response_dict)

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