sendFollowupMessage

suspend fun GatewayInteractionResponse.sendFollowupMessage(build: WebhookMessageBuilder.() -> Unit): Message

Create and send a new followup message, using the builder to build the request. This uses a webhook tied to the interaction ID and token.


suspend fun GatewayInteractionResponse.sendFollowupMessage(spec: EmbedCreateSpec): Message

Create and send a new followup message containing an embed from the specified spec. This uses a webhook tied to the interaction ID and token.


suspend fun InteractionResponse.sendFollowupMessage(content: String): MessageData

Create and send a new followup message with the provided content. This uses a webhook tied to the interaction ID and token.


suspend fun InteractionResponse.sendFollowupMessage(spec: WebhookExecuteSpec): MessageData

Create and send a new followup message using the provided WebhookExecuteSpec. This uses a webhook tied to the interaction ID and token.


suspend fun InteractionResponse.sendFollowupMessage(build: WebhookMessageBuilder.() -> Unit): MessageData

Create and send a new followup message, using the WebhookMessageBuilder to build the request. This uses a webhook tied to the interaction ID and token.


suspend fun InteractionResponse.sendFollowupMessage(spec: EmbedCreateSpec): MessageData

Create and send a new followup message containing an embed from the specified EmbedCreateSpec. This uses a webhook tied to the interaction ID and token.