Appearance
Report
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| subplan_id | str | ||
| created_at | datetime | ||
| status | str | ||
| sections | List[Dict[str, str]] | ||
| table_of_contents | List[ReportTOCEntryOutput] | [optional] | |
| suggestions | List[str] | [optional] | |
| studies | List[str] | [optional] | |
| report_type | str | [optional] | |
| focus | str | [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)