Appearance
Summary
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| content | str | [optional] | |
| sections | List[SummarySection] | ||
| project_id | str | ||
| created_at | datetime | ||
| status | str | ||
| user_interviews | List[str] | ||
| problems | List[str] | ||
| solution | str | [optional] | |
| research_goal | str | [optional] | |
| audiences | List[str] | ||
| user_interviews_count | int | ||
| saved | bool | ||
| study_id | str | [optional] | |
| synthetic_users | List[str] | ||
| messages | List[SummaryMessage] | [optional] | |
| summarization_focus | str | [optional] |
Example
python
from syntheticusers.models.summary import Summary
# TODO update the JSON string below
json = "{}"
# create an instance of Summary from a JSON string
summary_instance = Summary.from_json(json)
# print the JSON string representation of the object
print(Summary.to_json())
# convert the object into a dict
summary_dict = summary_instance.to_dict()
# create an instance of Summary from a dict
summary_from_dict = Summary.from_dict(summary_dict)