Skip to content

StudyInterviews

Combined schema that supports either: 1. Using existing GSU IDs (current behavior) 2. Generating new GSUs then interviewing (new behavior) When using Option 2, audience/problems/research_goal/files are pulled from the study itself.

Properties

NameTypeDescriptionNotes
synthetic_usersList[str][optional]
quantityint[optional]
custom_scriptstr[optional]
ongoing_walkthroughbool[optional]

Example

python
from syntheticusers.models.study_interviews import StudyInterviews

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

# convert the object into a dict
study_interviews_dict = study_interviews_instance.to_dict()
# create an instance of StudyInterviews from a dict
study_interviews_from_dict = StudyInterviews.from_dict(study_interviews_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.