Interface TwakeNodeParameters

Source
interface TwakeNodeParameters {
    additionalFields?: {
        senderIcon?: string;
        senderName?: string;
    };
    channelId?: string;
    content?: string;
    operation?: "send";
    resource?: "message";
}

Properties§

Source§

readonly additionalFields?: { senderIcon?: string; senderName?: string }

Default: {}

Source§

readonly channelId?: string

Channel's ID. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getChannels"}

Source§

readonly content?: string

Message content

Source§

readonly operation?: "send"

Default: "send"

Source§

readonly resource?: "message"

Default: "message"