Skip to content

StandaloneReportUpdate

Schema for updating standalone reports.

Properties

NameTypeDescriptionNotes
table_of_contentsList[ReportTOCEntryInput][optional]
focusstr[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)

[Back to API list] [Back to SDK]

Released under the MIT License.