Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

ProviderCollection

Collection of providers. New in version 2.1.0

Properties

Name Type Description Notes
providers List[Provider] [optional]

Example

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)

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