Appearance
StandaloneReportUpdate
Schema for updating standalone reports.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| table_of_contents | List[ReportTOCEntryInput] | [optional] | |
| focus | str | [optional] |
Example
python
from syntheticusers.models.standalone_report_update import StandaloneReportUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of StandaloneReportUpdate from a JSON string
standalone_report_update_instance = StandaloneReportUpdate.from_json(json)
# print the JSON string representation of the object
print(StandaloneReportUpdate.to_json())
# convert the object into a dict
standalone_report_update_dict = standalone_report_update_instance.to_dict()
# create an instance of StandaloneReportUpdate from a dict
standalone_report_update_from_dict = StandaloneReportUpdate.from_dict(standalone_report_update_dict)