A single section/block in a page layout.
| 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] |
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)