Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.05 KB

File metadata and controls

34 lines (25 loc) · 1.05 KB

CommentVo

A chunk of items.

Properties

Name Type Description Notes
metadata Metadata
owner OwnerInfo
spec CommentSpec
stats CommentStatsVo
status CommentStatus [optional]

Example

from halo_client.models.comment_vo import CommentVo

# TODO update the JSON string below
json = "{}"
# create an instance of CommentVo from a JSON string
comment_vo_instance = CommentVo.from_json(json)
# print the JSON string representation of the object
print(CommentVo.to_json())

# convert the object into a dict
comment_vo_dict = comment_vo_instance.to_dict()
# create an instance of CommentVo from a dict
comment_vo_from_dict = CommentVo.from_dict(comment_vo_dict)

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