Appearance
StandaloneReport
Schema for standalone reports (not tied to subplans).
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| created_at | datetime | ||
| status | str | ||
| report_type | str | ||
| project_id | str | ||
| created_by | str | ||
| sections | List[Dict[str, str]] | ||
| table_of_contents | List[ReportTOCEntryOutput] | [optional] | |
| studies | List[str] | ||
| focus | str | [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)