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

Latest commit

 

History

History
31 lines (22 loc) · 999 Bytes

File metadata and controls

31 lines (22 loc) · 999 Bytes

ConfigSection

The section of configuration.

Properties

Name Type Description Notes
name str [optional] [readonly]
options List[ConfigOption] [optional]

Example

from titanium_airflow_client.models.config_section import ConfigSection

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

# convert the object into a dict
config_section_dict = config_section_instance.to_dict()
# create an instance of ConfigSection from a dict
config_section_from_dict = ConfigSection.from_dict(config_section_dict)

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