Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.53 KB

File metadata and controls

45 lines (36 loc) · 1.53 KB

PageResponse

Response model for a Page.

Properties

Name Type Description Notes
page_id str
slug str
template str
sections List[SectionConfig]
custom_html str
meta PageMeta
hero HeroConfig
theme ThemeConfig
seo SEOConfig
stats List[StatItem]
featured_gallery FeaturedGalleryConfigOutput
tabs List[PageTabOutput]
password_protected bool
is_active bool
created_at datetime
updated_at datetime

Example

from mixpeek.models.page_response import PageResponse

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

# convert the object into a dict
page_response_dict = page_response_instance.to_dict()
# create an instance of PageResponse from a dict
page_response_from_dict = PageResponse.from_dict(page_response_dict)

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