Skip to content

Interview

Properties

NameTypeDescriptionNotes
idstr
project_idstr
study_idstr
created_atdatetime
statusstr
processed_atdatetime
helpfulbool
topicsList[str]
synthetic_user_idstr
audience_idstr
conversationsList[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)

[Back to API list] [Back to SDK]

Released under the MIT License.