Pool Collection serializer for responses.
| Name | Type | Description | Notes |
|---|---|---|---|
| pools | List[PoolResponse] | ||
| total_entries | int |
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)