MultiSelectActionResponse - Interface representing a multi-select action response.

interface MultiSelectActionResponse {
    error?: Error;
    options: { text: string; value: string }[];
    type: "multi-select";
    value: string;
}

Hierarchy (View Summary)

Properties

error?: Error

Optional error object if an error occurred during the action.

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

The options selected in the multi-select response.

type: "multi-select"

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

value: string

The value of the response.