Provider Collection serializer for responses.
| Name | Type | Description | Notes |
|---|---|---|---|
| providers | List[ProviderResponse] | ||
| total_entries | int |
from airflow_client.client.models.provider_collection_response import ProviderCollectionResponse # TODO update the JSON string below json = "{}" # create an instance of ProviderCollectionResponse from a JSON string provider_collection_response_instance = ProviderCollectionResponse.from_json(json) # print the JSON string representation of the object print(ProviderCollectionResponse.to_json()) # convert the object into a dict provider_collection_response_dict = provider_collection_response_instance.to_dict() # create an instance of ProviderCollectionResponse from a dict provider_collection_response_from_dict = ProviderCollectionResponse.from_dict(provider_collection_response_dict)