| Name | Type | Description | Notes |
|---|---|---|---|
| content | List[ContentBlock] | The content blocks that belong to this section. | [optional] |
| title | List[TextSegment] | The title of the section, as a rich text. | [optional] |
from cyperf.models.section import Section
# TODO update the JSON string below
json = "{}"
# create an instance of Section from a JSON string
section_instance = Section.from_json(json)
# print the JSON string representation of the object
print(Section.to_json())
# convert the object into a dict
section_dict = section_instance.to_dict()
# create an instance of Section from a dict
section_from_dict = Section.from_dict(section_dict)