List of config sections with their options.
| Name | Type | Description | Notes |
|---|---|---|---|
| sections | List[ConfigSection] |
fromairflow_client.client.models.configimportConfig# TODO update the JSON string belowjson="{}"# create an instance of Config from a JSON stringconfig_instance=Config.from_json(json)
# print the JSON string representation of the objectprint(Config.to_json())
# convert the object into a dictconfig_dict=config_instance.to_dict()
# create an instance of Config from a dictconfig_from_dict=Config.from_dict(config_dict)