Skip to content

Summary

Properties

NameTypeDescriptionNotes
idstr
contentstr[optional]
sectionsList[SummarySection]
project_idstr
created_atdatetime
statusstr
user_interviewsList[str]
problemsList[str]
solutionstr[optional]
research_goalstr[optional]
audiencesList[str]
user_interviews_countint
savedbool
study_idstr[optional]
synthetic_usersList[str]
messagesList[SummaryMessage][optional]
summarization_focusstr[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)

[Back to API list] [Back to SDK]

Released under the MIT License.