Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.25 KB

File metadata and controls

35 lines (26 loc) · 1.25 KB

CommentWithReplyVo

A chunk of items.

Properties

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

Example

from halo_client.models.comment_with_reply_vo import CommentWithReplyVo

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

# convert the object into a dict
comment_with_reply_vo_dict = comment_with_reply_vo_instance.to_dict()
# create an instance of CommentWithReplyVo from a dict
comment_with_reply_vo_from_dict = CommentWithReplyVo.from_dict(comment_with_reply_vo_dict)

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