Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 974 Bytes

File metadata and controls

33 lines (24 loc) · 974 Bytes

TagVo

A value object for {@link Tag Tag}.

Properties

Name Type Description Notes
metadata Metadata
post_count int [optional]
spec TagSpec [optional]
status TagStatus [optional]

Example

from halo_client.models.tag_vo import TagVo

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

# convert the object into a dict
tag_vo_dict = tag_vo_instance.to_dict()
# create an instance of TagVo from a dict
tag_vo_from_dict = TagVo.from_dict(tag_vo_dict)

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