Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 940 Bytes

File metadata and controls

29 lines (20 loc) · 940 Bytes

ConfigCategory

Properties

Name Type Description Notes
display_name str The user-visible name of the configuration category [optional]

Example

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]