Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.33 KB

File metadata and controls

33 lines (24 loc) · 1.33 KB

SectionConfig

A single section/block in a page layout.

Properties

Name Type Description Notes
section_id str Auto-generated section identifier [optional]
type str Section type: 'hero', 'stats-bar', 'featured-gallery', 'search-tabs', 'results-grid', 'results-list', 'markdown-content', 'iframe-embed'
props Dict[str, object] Section-specific configuration properties [optional]
order int Explicit render order; falls back to array position if omitted [optional]

Example

from mixpeek.models.section_config import SectionConfig

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

# convert the object into a dict
section_config_dict = section_config_instance.to_dict()
# create an instance of SectionConfig from a dict
section_config_from_dict = SectionConfig.from_dict(section_config_dict)

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