Collection of providers. New in version 2.1.0
| Name | Type | Description | Notes |
|---|---|---|---|
| providers | List[Provider] | [optional] |
from titanium_airflow_client.models.provider_collection import ProviderCollection
# TODO update the JSON string below
json = "{}"
# create an instance of ProviderCollection from a JSON string
provider_collection_instance = ProviderCollection.from_json(json)
# print the JSON string representation of the object
print(ProviderCollection.to_json())
# convert the object into a dict
provider_collection_dict = provider_collection_instance.to_dict()
# create an instance of ProviderCollection from a dict
provider_collection_from_dict = ProviderCollection.from_dict(provider_collection_dict)