MultiSelectActionRequest - Interface representing a multi-select action request.

interface MultiSelectActionRequest {
    addMessage?: boolean;
    always?: boolean;
    options: { text: string; value: string }[];
    response?: MultiSelectActionResponse;
    sendButtonText?: string;
    type: "multi-select";
}

Hierarchy (View Summary)

Properties

addMessage?: boolean

Indicates if a message should be added.

always?: boolean

Indicates if the action should always be performed.

options: { text: string; value: string }[]

The options for multi-select.

The response for the multi-select action (optional).

sendButtonText?: string

The text for the send button (optional).

type: "multi-select"

The type of the request. Value is 'multi-select'.