Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.18 KB

File metadata and controls

31 lines (22 loc) · 1.18 KB

ConnectionCollectionResponse

Connection Collection serializer for responses.

Properties

NameTypeDescriptionNotes
connectionsList[ConnectionResponse]
total_entriesint

Example

fromairflow_client.client.models.connection_collection_responseimportConnectionCollectionResponse# TODO update the JSON string belowjson="{}"# create an instance of ConnectionCollectionResponse from a JSON stringconnection_collection_response_instance=ConnectionCollectionResponse.from_json(json)
# print the JSON string representation of the objectprint(ConnectionCollectionResponse.to_json())
# convert the object into a dictconnection_collection_response_dict=connection_collection_response_instance.to_dict()
# create an instance of ConnectionCollectionResponse from a dictconnection_collection_response_from_dict=ConnectionCollectionResponse.from_dict(connection_collection_response_dict)

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