Skip to content

TextToSpeechRequest

Example Usage

typescript
import { TextToSpeechRequest } from "@meetkai/mka1/models/operations";

let value: TextToSpeechRequest = {
  textToSpeechRequest: {
    text: "Hello, welcome to our text-to-speech service.",
    language: "en",
  },
};

Fields

FieldTypeRequiredDescriptionExample
xOnBehalfOfstringOptional external end-user identifier forwarded by the API gateway.
textToSpeechRequestcomponents.TextToSpeechRequest✔️N/A{
"text": "Hello, welcome to our text-to-speech service.",
"language": "en"
}