Config option.
| Name | Type | Description | Notes |
|---|---|---|---|
| key | str | ||
| value | Value |
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)