Interface InteractionCreateMessageFields

interface InteractionCreateMessageFields {
    allowedMentions?: AllowedMentions;
    attachments?: CreateAttachment[];
    components?: IComponent[];
    content?: string;
    embeds?: Embed[];
    flags?: InteractionMessageFlags;
}

Hierarchy (view full)

Properties

allowedMentions?: AllowedMentions

Control the mentions in the message.

The default for this if not provided is: {parse: ["users"]} this means that discord will search the message for user mentions only and 'everyone', 'here' and other mentions will be ignored.

attachments?: CreateAttachment[]
components?: IComponent[]
content?: string
embeds?: Embed[]

Generated using TypeDoc