Response model for a Page.
| 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 |
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)