Appearance
ReportTOCEntryInput
Schema for a single table of contents entry with nested subsections.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| title | str | ||
| description | str | ||
| subsections | List[ReportTOCEntryInput] | [optional] |
Example
python
from syntheticusers.models.report_toc_entry_input import ReportTOCEntryInput
# TODO update the JSON string below
json = "{}"
# create an instance of ReportTOCEntryInput from a JSON string
report_toc_entry_input_instance = ReportTOCEntryInput.from_json(json)
# print the JSON string representation of the object
print(ReportTOCEntryInput.to_json())
# convert the object into a dict
report_toc_entry_input_dict = report_toc_entry_input_instance.to_dict()
# create an instance of ReportTOCEntryInput from a dict
report_toc_entry_input_from_dict = ReportTOCEntryInput.from_dict(report_toc_entry_input_dict)