Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 893 Bytes

File metadata and controls

32 lines (23 loc) · 893 Bytes

StatsVo

Stats value object.

Properties

Name Type Description Notes
comment int [optional]
upvote int [optional]
visit int [optional]

Example

from halo_client.models.stats_vo import StatsVo

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

# convert the object into a dict
stats_vo_dict = stats_vo_instance.to_dict()
# create an instance of StatsVo from a dict
stats_vo_from_dict = StatsVo.from_dict(stats_vo_dict)

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