Skip to content

Report

Properties

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

Example

python
from syntheticusers.models.report import Report

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

# convert the object into a dict
report_dict = report_instance.to_dict()
# create an instance of Report from a dict
report_from_dict = Report.from_dict(report_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.