Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 978 Bytes

File metadata and controls

30 lines (21 loc) · 978 Bytes

Section

Properties

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]

Example

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)

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