| Name | Type | Description | Notes |
|---|---|---|---|
| number_of_sections | int | ||
| sections | List[SingleSectionModel] |
fromrevengai.models.section_modelimportSectionModel# TODO update the JSON string belowjson="{}"# create an instance of SectionModel from a JSON stringsection_model_instance=SectionModel.from_json(json)
# print the JSON string representation of the objectprint(SectionModel.to_json())
# convert the object into a dictsection_model_dict=section_model_instance.to_dict()
# create an instance of SectionModel from a dictsection_model_from_dict=SectionModel.from_dict(section_model_dict)