Interface SendSpeechMessage

Represents a message to send speech via the interaction manager.

SendSpeechMessage

interface SendSpeechMessage {
    message: string;
    type: "sendSpeech";
}

Properties

Properties

message: string

The message content to be spoken.

type: "sendSpeech"

The type of the message, which is "sendSpeech".