TextActionResponse - Interface representing a text action response.

interface TextActionResponse {
    error?: Error;
    type: "text";
    value: string;
}

Hierarchy (View Summary)

Properties

Properties

error?: Error

Optional error object if an error occurred during the action.

type: "text"

The type of the response. Value is 'text'.

value: string

The value of the response.