Represents a request for an action.

interface ActionRequest {
    addMessage?: boolean;
    always?: boolean;
    response?: ActionResponse;
    type: string;
}

Hierarchy (View Summary)

Properties

addMessage?: boolean

Indicates if a message should be added.

always?: boolean

Indicates if the action should always be performed.

response?: ActionResponse

The response object associated with the action.

type: string

The type of the action.