Skip to content

StudyCreate

Properties

NameTypeDescriptionNotes
descriptionstr[optional]
project_idstr
created_atdatetime[optional]
bookmarkedbool[optional]
languagestr
audiencesList[str]
problemsList[str]
filesList[str]
progressStudyProgress[optional]
statusstr[optional]
solution_idstr[optional]
research_goal_idstr[optional]
knowledge_graphsList[str][optional]
strategyAppApiSchemasStudiesSubPlanType
interview_countint[optional]
interviewsList[str][optional]

Example

python
from syntheticusers.models.study_create import StudyCreate

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

# convert the object into a dict
study_create_dict = study_create_instance.to_dict()
# create an instance of StudyCreate from a dict
study_create_from_dict = StudyCreate.from_dict(study_create_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.