An object representing a server reply to performing an action.

interface IActionReply {
    message?: string;
    status: null | "error" | "ok" | "warning";
}

Properties

Properties

message?: string

An optional message when the status is not 'ok'.

status: null | "error" | "ok" | "warning"

The status category of the reply.