Skip to content

ScriptGenerationOutput

Structured output containing the generated interview script questions.

Properties

NameTypeDescriptionNotes
interview_scriptList[str]List of generated open-ended interview questions.

Example

python
from syntheticusers.models.script_generation_output import ScriptGenerationOutput

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

# convert the object into a dict
script_generation_output_dict = script_generation_output_instance.to_dict()
# create an instance of ScriptGenerationOutput from a dict
script_generation_output_from_dict = ScriptGenerationOutput.from_dict(script_generation_output_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.