A value object for {@link SinglePage SinglePage}.
| 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] |
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)