Represents an action request specific to audio interactions.

interface AudioActionRequest {
    addMessage?: boolean;
    always?: boolean;
    response?: AudioActionResponse;
    sendButtonText?: string;
    type: "audio";
}

Hierarchy (View Summary)

Properties

addMessage?: boolean

Indicates if a message should be added.

always?: boolean

Indicates if the action should always be performed.

Response object for the audio action.

sendButtonText?: string

Text to display on the button for sending audio.

type: "audio"

Specifies the type of action request.