Interface CreateMessageOptions

interface CreateMessageOptions {
    components?: InteractionButtonComponent[];
    content?: string;
    embeds?: Embed[];
    hiddenLinkPreviewURLs?: string[];
    isPrivate?: boolean;
    isSilent?: boolean;
    replyMessageIDs?: string[];
}

Properties

Message components

content?: string

The content of the message (min length 1; max length 4000)

embeds?: Embed[]

Embeds

hiddenLinkPreviewURLs?: string[]

Links in content to prevent unfurling as a link preview when displaying in Guilded (min items 1; must have unique items true)

isPrivate?: boolean

If set, this message will only be seen by those mentioned or replied to

isSilent?: boolean

If set, this message will not notify any mentioned users or roles (default false)

replyMessageIDs?: string[]

Message IDs to reply to (min items 1; max items 5)