blob: 8b8265f82d5bbe5a56bd4862e0f7400e882352f6 [file] [log] [blame] [view]
# ConfigSection
Config Section Schema.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **str** | |
**options** | [**List[ConfigOption]**](ConfigOption.md) | |
## Example
```python
from airflow_client.client.models.config_section import ConfigSection
# TODO update the JSON string below
json = "{}"
# create an instance of ConfigSection from a JSON string
config_section_instance = ConfigSection.from_json(json)
# print the JSON string representation of the object
print(ConfigSection.to_json())
# convert the object into a dict
config_section_dict = config_section_instance.to_dict()
# create an instance of ConfigSection from a dict
config_section_from_dict = ConfigSection.from_dict(config_section_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)