interface TextToSpeechInput {
    textToSpeech: {
        source: {
            text: string;
        };
        terminology?: string;
        voiceId?: string;
    };
}

Properties

Properties

textToSpeech: {
    source: {
        text: string;
    };
    terminology?: string;
    voiceId?: string;
}

Type declaration

  • source: {
        text: string;
    }
    • text: string
  • Optional terminology?: string
  • Optional voiceId?: string