Appearance
StandaloneReportCreate
Schema for creating standalone reports.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| project_id | str | ||
| study_ids | List[str] | ||
| table_of_contents | List[ReportTOCEntryInput] | [optional] | |
| focus | str | [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)