Skip to content

StandaloneReport

Schema for standalone reports (not tied to subplans).

Properties

NameTypeDescriptionNotes
idstr
created_atdatetime
statusstr
report_typestr
project_idstr
created_bystr
sectionsList[Dict[str, str]]
table_of_contentsList[ReportTOCEntryOutput][optional]
studiesList[str]
focusstr[optional]

Example

python
from syntheticusers.models.standalone_report import StandaloneReport

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

# convert the object into a dict
standalone_report_dict = standalone_report_instance.to_dict()
# create an instance of StandaloneReport from a dict
standalone_report_from_dict = StandaloneReport.from_dict(standalone_report_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.