| Name |
Type |
Description |
Notes |
| display_name |
str |
The user-visible name of the configuration category |
[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)
[Back to Model list] [Back to API list] [Back to README]