Appearance
Study
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| description | str | ||
| project_id | str | ||
| created_at | datetime | ||
| bookmarked | bool | ||
| language | str | ||
| audiences | List[str] | ||
| audiences_obj | List[Audience] | ||
| problems | List[str] | ||
| problems_obj | List[Problem] | ||
| files | List[str] | ||
| plan_id | str | ||
| progress | StudyProgress | [optional] | |
| status | str | ||
| solution_id | str | [optional] | |
| solution | Solution | [optional] | |
| research_goal_id | str | [optional] | |
| research_goal | ResearchGoal | [optional] | |
| knowledge_graphs | List[str] | [optional] | |
| strategy | AppApiSchemasStudiesSubPlanType | ||
| interview_count | int | [optional] | |
| interviews | List[str] | ||
| summaries | List[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)