Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 979 Bytes

File metadata and controls

33 lines (24 loc) · 979 Bytes

ReplyVo

A chunk of items.

Properties

Name Type Description Notes
metadata Metadata
owner OwnerInfo
spec ReplySpec
stats CommentStatsVo

Example

from halo_client.models.reply_vo import ReplyVo

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

# convert the object into a dict
reply_vo_dict = reply_vo_instance.to_dict()
# create an instance of ReplyVo from a dict
reply_vo_from_dict = ReplyVo.from_dict(reply_vo_dict)

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