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

Latest commit

 

History

History
32 lines (23 loc) · 1.01 KB

File metadata and controls

32 lines (23 loc) · 1.01 KB

Provider

The provider New in version 2.1.0

Properties

Name Type Description Notes
package_name str The package name of the provider. [optional]
description str The description of the provider. [optional]
version str The version of the provider. [optional]

Example

from titanium_airflow_client.models.provider import Provider

# TODO update the JSON string below
json = "{}"
# create an instance of Provider from a JSON string
provider_instance = Provider.from_json(json)
# print the JSON string representation of the object
print(Provider.to_json())

# convert the object into a dict
provider_dict = provider_instance.to_dict()
# create an instance of Provider from a dict
provider_from_dict = Provider.from_dict(provider_dict)

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