Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.64 KB

File metadata and controls

42 lines (33 loc) · 1.64 KB

PublicPageConfigResponse

Public page configuration (strips internal fields).

Properties

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

Example

from mixpeek.models.public_page_config_response import PublicPageConfigResponse

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

# convert the object into a dict
public_page_config_response_dict = public_page_config_response_instance.to_dict()
# create an instance of PublicPageConfigResponse from a dict
public_page_config_response_from_dict = PublicPageConfigResponse.from_dict(public_page_config_response_dict)

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