A value object for {@link Category Category}.
| Name | Type | Description | Notes |
|---|---|---|---|
| metadata | Metadata | ||
| post_count | int | [optional] | |
| spec | CategorySpec | [optional] | |
| status | CategoryStatus | [optional] |
from halo_client.models.category_vo import CategoryVo
# TODO update the JSON string below
json = "{}"
# create an instance of CategoryVo from a JSON string
category_vo_instance = CategoryVo.from_json(json)
# print the JSON string representation of the object
print(CategoryVo.to_json())
# convert the object into a dict
category_vo_dict = category_vo_instance.to_dict()
# create an instance of CategoryVo from a dict
category_vo_from_dict = CategoryVo.from_dict(category_vo_dict)