Skip to content

Latest commit

History

History
31 lines (22 loc) · 913 Bytes

File metadata and controls

31 lines (22 loc) · 913 Bytes

ConfigOption

Config option.

Properties

NameTypeDescriptionNotes
keystr
valueValue

Example

fromairflow_client.client.models.config_optionimportConfigOption# TODO update the JSON string belowjson="{}"# create an instance of ConfigOption from a JSON stringconfig_option_instance=ConfigOption.from_json(json)
# print the JSON string representation of the objectprint(ConfigOption.to_json())
# convert the object into a dictconfig_option_dict=config_option_instance.to_dict()
# create an instance of ConfigOption from a dictconfig_option_from_dict=ConfigOption.from_dict(config_option_dict)

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