Preview environment

interface MessageCreateOptions

export interface MessageCreateOptions extends BaseMessageOptionsWithPoll

The options for sending a message.

optional
allowedMentions? : MessageMentionOptions

Which mentions should be parsed from the message content (see here for more details)

Inherited from: BaseMessageOptions

Action rows containing interactive components for the message (buttons, select menus) and other top-level components. When using components v2, the flag MessageFlags.IsComponentsV2 needs to be set and content, embeds, stickers, and poll cannot be used.

Inherited from: BaseMessageOptions

optional
content? : string

The content for the message. This can only be null when editing a message.

Inherited from: BaseMessageOptions

optional
embeds? : readonly (JSONEncodable<APIEmbed> | APIEmbed)[]

The embeds for the message

Inherited from: BaseMessageOptions

optional
enforceNonce? : boolean

The files to send with the message.

Inherited from: BaseMessageOptions

optional
flags? : BitFieldResolvable<Extract<MessageFlagsString, 'SuppressEmbeds' | 'SuppressNotifications' | 'IsComponentsV2'>, MessageFlags.SuppressEmbeds | MessageFlags.SuppressNotifications | MessageFlags.IsComponentsV2> | undefined

optional
forward? : ForwardOptions

The options for forwarding a message

optional
nonce? : string | number

optional
poll? : PollData

The poll to send with the message

Inherited from: BaseMessageOptionsWithPoll

optional
reply? : ReplyOptions

The options for replying to a message

optional
stickers? : readonly StickerResolvable[]

optional
tts? : boolean