Appearance
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
| Name | Type | Description | Notes |
|---|---|---|---|
| synthetic_users | List[str] | [optional] | |
| quantity | int | [optional] | |
| custom_script | str | [optional] | |
| ongoing_walkthrough | bool | [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)