Skip to content

StandaloneReportCreate

Schema for creating standalone reports.

Properties

NameTypeDescriptionNotes
project_idstr
study_idsList[str]
table_of_contentsList[ReportTOCEntryInput][optional]
focusstr[optional]

Example

python
from syntheticusers.models.standalone_report_create import StandaloneReportCreate

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

# convert the object into a dict
standalone_report_create_dict = standalone_report_create_instance.to_dict()
# create an instance of StandaloneReportCreate from a dict
standalone_report_create_from_dict = StandaloneReportCreate.from_dict(standalone_report_create_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.