Appearance
ReportTOCEntryOutput
Schema for a single table of contents entry with nested subsections.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| title | str | ||
| description | str | ||
| subsections | List[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)