A value object for {@link Post Post}.
| Name | Type | Description | Notes |
|---|---|---|---|
| categories | List[CategoryVo] | [optional] | |
| content | ContentVo | [optional] | |
| contributors | List[ContributorVo] | [optional] | |
| metadata | Metadata | ||
| owner | ContributorVo | [optional] | |
| spec | PostSpec | [optional] | |
| stats | StatsVo | [optional] | |
| status | PostStatus | [optional] | |
| tags | List[TagVo] | [optional] |
from halo_client.models.post_vo import PostVo
# TODO update the JSON string below
json = "{}"
# create an instance of PostVo from a JSON string
post_vo_instance = PostVo.from_json(json)
# print the JSON string representation of the object
print(PostVo.to_json())
# convert the object into a dict
post_vo_dict = post_vo_instance.to_dict()
# create an instance of PostVo from a dict
post_vo_from_dict = PostVo.from_dict(post_vo_dict)