No summary provided.
Implements
JSONEncodable<RESTPostAPIChannelMessageJSONBody>Creates new attachment builder from API data.
Name | Type | Optional | Description |
---|---|---|---|
data | Partial<RESTPostAPIChannelMessageJSONBody> | Yes | The API data to create this attachment with |
Adds attachments to this message.
Name | Type | Optional | Description |
---|---|---|---|
...attachments | RestOrArray<APIAttachment | AttachmentBuilder | ((builder: AttachmentBuilder) => AttachmentBuilder)> | No | The attachments to add |
Adds components to this message.
Name | Type | Optional | Description |
---|---|---|---|
...components | RestOrArray<ActionRowBuilder | APIActionRowComponent<APIMessageActionRowComponent> | ((builder: ActionRowBuilder) => ActionRowBuilder)> | No | The components to add |
Appends embeds to this message.
Remarks
The maximum amount of embeds that can be added is 10.Example
Using an array:Example
Using rest parameters (variadic):Name | Type | Optional | Description |
---|---|---|---|
...embeds | RestOrArray<APIEmbed | EmbedBuilder | ((builder: EmbedBuilder) => EmbedBuilder)> | No | The embeds to add |
Adds sticker ids to this message.
Name | Type | Optional | Description |
---|---|---|---|
...stickerIds | RestOrArray<Snowflake> | No | The ids of the stickers to add |
Clears the allowed mentions for this message.
Clears the content of the message.
Clears the flags for this message.
Clears the message reference for this message.
Clears the nonce of the message.
Clears the poll for this message.
Sets the allowed mentions for this message.
Name | Type | Optional | Description |
---|---|---|---|
allowedMentions | AllowedMentionsBuilder | APIAllowedMentions | ((builder: AllowedMentionsBuilder) => AllowedMentionsBuilder) | No | The allowed mentions to set |
Sets attachments for this message.
Name | Type | Optional | Description |
---|---|---|---|
...attachments | RestOrArray<APIAttachment | AttachmentBuilder | ((builder: AttachmentBuilder) => AttachmentBuilder)> | No | The attachments to set |
Sets the components of this message.
Name | Type | Optional | Description |
---|---|---|---|
...components | RestOrArray<ActionRowBuilder | APIActionRowComponent<APIMessageActionRowComponent> | ((builder: ActionRowBuilder) => ActionRowBuilder)> | No | The components to set |
Sets the content of the message.
Name | Type | Optional | Description |
---|---|---|---|
content | string | No | The content to set |
Sets
enforce_nonce
for this message.Name | Type | Optional | Description |
---|---|---|---|
enforceNonce | boolean | Yes | None |
Sets the flags for this message.
Name | Type | Optional | Description |
---|---|---|---|
flags | MessageFlags | No | None |
Sets the message reference for this message.
Name | Type | Optional | Description |
---|---|---|---|
reference | APIMessageReference | MessageReferenceBuilder | ((builder: MessageReferenceBuilder) => MessageReferenceBuilder) | No | The reference to set |
Sets the poll for this message.
Name | Type | Optional | Description |
---|---|---|---|
poll | APIPoll | PollBuilder | ((builder: PollBuilder) => PollBuilder) | No | The poll to set |
Sets the sticker ids of this message.
Name | Type | Optional | Description |
---|---|---|---|
...stickerIds | RestOrArray<Snowflake> | No | The ids of the stickers to set |
Sets whether the message is TTS.
Name | Type | Optional | Description |
---|---|---|---|
tts | boolean | Yes | None |
Removes, replaces, or inserts attachments for this message.
Remarks
This method behaves similarly to Array.prototype.splice().It's useful for modifying and adjusting order of the already-existing attachments of a message.Example
Remove the first attachment:Example
Remove the first n attachments:Example
Remove the last attachment:Name | Type | Optional | Description |
---|---|---|---|
start | number | No | The index to start at |
deleteCount | number | No | The amount of attachments to remove |
...attachments | RestOrArray<APIAttachment | AttachmentBuilder | ((builder: AttachmentBuilder) => AttachmentBuilder)> | No | The attachments to insert |
Removes, replaces, or inserts components for this message.
Remarks
This method behaves similarly to Array.prototype.splice().It's useful for modifying and adjusting order of the already-existing components of a message.Example
Remove the first component:Example
Remove the first n components:Example
Remove the last component:Name | Type | Optional | Description |
---|---|---|---|
start | number | No | The index to start at |
deleteCount | number | No | The amount of components to remove |
...components | RestOrArray<ActionRowBuilder | APIActionRowComponent<APIMessageActionRowComponent> | ((builder: ActionRowBuilder) => ActionRowBuilder)> | No | The components to insert |
Removes, replaces, or inserts embeds for this message.
Remarks
This method behaves similarly to Array.prototype.splice().It's useful for modifying and adjusting order of the already-existing embeds of a message.Example
Remove the first embed:Example
Remove the first n embeds:Example
Remove the last embed:Name | Type | Optional | Description |
---|---|---|---|
start | number | No | The index to start at |
deleteCount | number | No | The amount of embeds to remove |
...embeds | RestOrArray<APIEmbed | EmbedBuilder | ((builder: EmbedBuilder) => EmbedBuilder)> | No | The embeds to insert |
Removes, replaces, or inserts sticker ids for this message.
Remarks
This method behaves similarly to Array.prototype.splice().It's useful for modifying and adjusting order of the already-existing sticker ids of a message.Example
Remove the first sticker id:Example
Remove the first n sticker ids:Example
Remove the last sticker id:Name | Type | Optional | Description |
---|---|---|---|
index | number | No | The index to start at |
deleteCount | number | No | The amount of sticker ids to remove |
...stickerIds | RestOrArray<Snowflake> | No | The sticker ids to insert |
Serializes this builder to API-compatible JSON data.Note that by disabling validation, there is no guarantee that the resulting object will be valid.
Name | Type | Optional | Description |
---|---|---|---|
validationOverride | boolean | Yes | Force validation to run/not run regardless of your global preference |
Updates the allowed mentions for this message (and creates it if it doesn't exist)
Name | Type | Optional | Description |
---|---|---|---|
updater | (builder: AllowedMentionsBuilder) => AllowedMentionsBuilder | No | The function to update the allowed mentions with |
Updates the message reference for this message (and creates it if it doesn't exist)
Name | Type | Optional | Description |
---|---|---|---|
updater | (builder: MessageReferenceBuilder) => MessageReferenceBuilder | No | The function to update the message reference with |
Updates the poll for this message (and creates it if it doesn't exist)
Name | Type | Optional | Description |
---|---|---|---|
updater | (builder: PollBuilder) => PollBuilder | No | The function to update the poll with |