Appearance
StudyUpdate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | [optional] | |
| project_id | str | [optional] | |
| created_at | datetime | [optional] | |
| bookmarked | bool | [optional] | |
| language | str | [optional] | |
| audiences | List[str] | [optional] | |
| files | List[str] | [optional] | |
| progress | StudyProgress | [optional] | |
| status | str | [optional] | |
| knowledge_graphs | List[str] | [optional] | |
| strategy | AppApiSchemasStudiesSubPlanType | [optional] | |
| interview_count | int | [optional] | |
| interviews | List[str] | [optional] |
Example
python
from syntheticusers.models.study_update import StudyUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of StudyUpdate from a JSON string
study_update_instance = StudyUpdate.from_json(json)
# print the JSON string representation of the object
print(StudyUpdate.to_json())
# convert the object into a dict
study_update_dict = study_update_instance.to_dict()
# create an instance of StudyUpdate from a dict
study_update_from_dict = StudyUpdate.from_dict(study_update_dict)