Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

PoolCollectionResponse

Pool Collection serializer for responses.

Properties

NameTypeDescriptionNotes
poolsList[PoolResponse]
total_entriesint

Example

fromairflow_client.client.models.pool_collection_responseimportPoolCollectionResponse# TODO update the JSON string belowjson="{}"# create an instance of PoolCollectionResponse from a JSON stringpool_collection_response_instance=PoolCollectionResponse.from_json(json)
# print the JSON string representation of the objectprint(PoolCollectionResponse.to_json())
# convert the object into a dictpool_collection_response_dict=pool_collection_response_instance.to_dict()
# create an instance of PoolCollectionResponse from a dictpool_collection_response_from_dict=PoolCollectionResponse.from_dict(pool_collection_response_dict)

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