| Name | Type | Description | Notes |
|---|---|---|---|
| index | int | The index of the category | [optional] |
| name | str | The name of the category | [optional] |
| values | List[CategoryValue] | The values of the category | [optional] |
from cyperf.models.category import Category
# TODO update the JSON string below
json = "{}"
# create an instance of Category from a JSON string
category_instance = Category.from_json(json)
# print the JSON string representation of the object
print(Category.to_json())
# convert the object into a dict
category_dict = category_instance.to_dict()
# create an instance of Category from a dict
category_from_dict = Category.from_dict(category_dict)