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
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
xOnBehalfOf | string | ➖ | Optional external end-user identifier forwarded by the API gateway. | |
textToSpeechRequest | components.TextToSpeechRequest | ✔️ | N/A | { "text": "Hello, welcome to our text-to-speech service.", "language": "en" } |