Appearance
Interview
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| project_id | str | ||
| study_id | str | ||
| created_at | datetime | ||
| status | str | ||
| processed_at | datetime | ||
| helpful | bool | ||
| topics | List[str] | ||
| synthetic_user_id | str | ||
| audience_id | str | ||
| conversations | List[Conversation] |
Example
python
from syntheticusers.models.interview import Interview
# TODO update the JSON string below
json = "{}"
# create an instance of Interview from a JSON string
interview_instance = Interview.from_json(json)
# print the JSON string representation of the object
print(Interview.to_json())
# convert the object into a dict
interview_dict = interview_instance.to_dict()
# create an instance of Interview from a dict
interview_from_dict = Interview.from_dict(interview_dict)