Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.31 KB

File metadata and controls

38 lines (29 loc) · 1.31 KB

PostVo

A value object for {@link Post Post}.

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]