Skip to content

StudyUpdate

Properties

NameTypeDescriptionNotes
descriptionstr[optional]
project_idstr[optional]
created_atdatetime[optional]
bookmarkedbool[optional]
languagestr[optional]
audiencesList[str][optional]
filesList[str][optional]
progressStudyProgress[optional]
statusstr[optional]
knowledge_graphsList[str][optional]
strategyAppApiSchemasStudiesSubPlanType[optional]
interview_countint[optional]
interviewsList[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)

[Back to API list] [Back to SDK]

Released under the MIT License.