Config Section Schema.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| options | List[ConfigOption] |
fromairflow_client.client.models.config_sectionimportConfigSection# TODO update the JSON string belowjson="{}"# create an instance of ConfigSection from a JSON stringconfig_section_instance=ConfigSection.from_json(json)
# print the JSON string representation of the objectprint(ConfigSection.to_json())
# convert the object into a dictconfig_section_dict=config_section_instance.to_dict()
# create an instance of ConfigSection from a dictconfig_section_from_dict=ConfigSection.from_dict(config_section_dict)