Skip to content

Study

Properties

NameTypeDescriptionNotes
idstr
descriptionstr
project_idstr
created_atdatetime
bookmarkedbool
languagestr
audiencesList[str]
audiences_objList[Audience]
problemsList[str]
problems_objList[Problem]
filesList[str]
plan_idstr
progressStudyProgress[optional]
statusstr
solution_idstr[optional]
solutionSolution[optional]
research_goal_idstr[optional]
research_goalResearchGoal[optional]
knowledge_graphsList[str][optional]
strategyAppApiSchemasStudiesSubPlanType
interview_countint[optional]
interviewsList[str]
summariesList[str]

Example

python
from syntheticusers.models.study import Study

# TODO update the JSON string below
json = "{}"
# create an instance of Study from a JSON string
study_instance = Study.from_json(json)
# print the JSON string representation of the object
print(Study.to_json())

# convert the object into a dict
study_dict = study_instance.to_dict()
# create an instance of Study from a dict
study_from_dict = Study.from_dict(study_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.