Skip to content

Files

Latest commit

May 19, 2025
56c1242 · May 19, 2025

History

History
31 lines (22 loc) · 913 Bytes

ConfigOption.md

File metadata and controls

31 lines (22 loc) · 913 Bytes

ConfigOption

Config option.

Properties

Name Type Description Notes
key str
value Value

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]