| Name |
Type |
Description |
Notes |
| display_name |
str |
The user-visible name of the configuration subcategory |
[optional] |
from cyperf.models.config_sub_category import ConfigSubCategory
# TODO update the JSON string below
json = "{}"
# create an instance of ConfigSubCategory from a JSON string
config_sub_category_instance = ConfigSubCategory.from_json(json)
# print the JSON string representation of the object
print(ConfigSubCategory.to_json())
# convert the object into a dict
config_sub_category_dict = config_sub_category_instance.to_dict()
# create an instance of ConfigSubCategory from a dict
config_sub_category_from_dict = ConfigSubCategory.from_dict(config_sub_category_dict)
[Back to Model list] [Back to API list] [Back to README]