export interface DialogueInputResponseModel { /** The text of the dialogue input line. */ text: string; /** The ID of the voice used for this dialogue input line. */ voiceId: string; /** The name of the voice used for this dialogue input line. */ voiceName: string; }