| Name | Type | Description | Notes |
|---|---|---|---|
| display_name | str | The user-visible name of the configuration category | [optional] |
| links | List[APILink] | [optional] | |
| subcategories | List[ConfigSubCategory] | List of subcategory names | [optional] |
from cyperf.models.config_category import ConfigCategory
# TODO update the JSON string below
json = "{}"
# create an instance of ConfigCategory from a JSON string
config_category_instance = ConfigCategory.from_json(json)
# print the JSON string representation of the object
print(ConfigCategory.to_json())
# convert the object into a dict
config_category_dict = config_category_instance.to_dict()
# create an instance of ConfigCategory from a dict
config_category_from_dict = ConfigCategory.from_dict(config_category_dict)