Skip to content

Latest commit

History

History
30 lines (21 loc) · 859 Bytes

File metadata and controls

30 lines (21 loc) · 859 Bytes

Config

List of config sections with their options.

Properties

NameTypeDescriptionNotes
sectionsList[ConfigSection]

Example

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)

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