Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.3 KB

File metadata and controls

36 lines (27 loc) · 1.3 KB

SinglePageVo

A value object for {@link SinglePage SinglePage}.

Properties

Name Type Description Notes
content ContentVo [optional]
contributors List[ContributorVo] [optional]
metadata Metadata
owner ContributorVo [optional]
spec SinglePageSpec [optional]
stats StatsVo [optional]
status SinglePageStatus [optional]

Example

from halo_client.models.single_page_vo import SinglePageVo

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

# convert the object into a dict
single_page_vo_dict = single_page_vo_instance.to_dict()
# create an instance of SinglePageVo from a dict
single_page_vo_from_dict = SinglePageVo.from_dict(single_page_vo_dict)

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