Interface EditInteractionContent

interface EditInteractionContent {
    allowedMentions?: null | AllowedMentions;
    attachments?: null | MessageAttachment[];
    components?: null | MessageComponent[];
    content?: null | string;
    embeds?: null | EmbedOptions[];
    files?: null | File[];
    poll?: MessagePollOptions;
}

Hierarchy

  • Pick<EditWebhookMessageOptions, "content" | "embeds" | "allowedMentions" | "components" | "attachments" | "files" | "poll">
    • EditInteractionContent

Properties

allowedMentions?: null | AllowedMentions

An object that specifies the allowed mentions in this message.

attachments?: null | MessageAttachment[]

An array of partial attachments related to the sent files.

components?: null | MessageComponent[]

An array of components to send. snake_case keys should be converted to camelCase, or passed through Util#rawMessageComponents.

content?: null | string

The content of the message.

embeds?: null | EmbedOptions[]

An array of embeds to send. snake_case keys should be converted to camelCase, or passed through Util#rawEmbeds.

files?: null | File[]

The files to send.

Polls can only be added when editing a deferred interaction response.