ConfigOption

Config option.

Properties

NameTypeDescriptionNotes
keystr
valueValue

Example

from airflow_client.client.models.config_option import ConfigOption

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

# convert the object into a dict
config_option_dict = config_option_instance.to_dict()
# create an instance of ConfigOption from a dict
config_option_from_dict = ConfigOption.from_dict(config_option_dict)

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