Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.04 KB

File metadata and controls

34 lines (25 loc) · 1.04 KB

SinglePage

Single page extension.

Properties

Name Type Description Notes
api_version str
kind str
metadata Metadata
spec SinglePageSpec
status SinglePageStatus [optional]

Example

from halo_client.models.single_page import SinglePage

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

# convert the object into a dict
single_page_dict = single_page_instance.to_dict()
# create an instance of SinglePage from a dict
single_page_from_dict = SinglePage.from_dict(single_page_dict)

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