Skip to content

ReportTOCEntryOutput

Schema for a single table of contents entry with nested subsections.

Properties

NameTypeDescriptionNotes
titlestr
descriptionstr
subsectionsList[ReportTOCEntryOutput][optional]

Example

python
from syntheticusers.models.report_toc_entry_output import ReportTOCEntryOutput

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

# convert the object into a dict
report_toc_entry_output_dict = report_toc_entry_output_instance.to_dict()
# create an instance of ReportTOCEntryOutput from a dict
report_toc_entry_output_from_dict = ReportTOCEntryOutput.from_dict(report_toc_entry_output_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.