ProviderCollectionResponse

Provider Collection serializer for responses.

Properties

NameTypeDescriptionNotes
providersList[ProviderResponse]
total_entriesint

Example

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)

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