send Message
open fun sendMessage(content: String): WebhookMessageCreateAction<Message>
Content copied to clipboard
Send a follow-up message with the given content.
Return
A WebhookMessageAction
Parameters
content
The content for the message.
open fun sendMessage(message: Message): WebhookMessageCreateAction<Message>
Content copied to clipboard
Send a follow-up message with the given content.
Return
A WebhookMessageAction
Parameters
message
The message to send.
open fun sendMessage(builder: MessageCreateBuilder): WebhookMessageCreateAction<Message>
Content copied to clipboard
Send a follow-up message with the given content.
Return
A WebhookMessageAction
Parameters
builder
The message builder.
open fun sendMessage(builder: MessageCreateBuilder.() -> Unit): WebhookMessageCreateAction<Message>
Content copied to clipboard
Send a follow-up message with the given content.
Return
A WebhookMessageAction
Parameters
builder
The message builder function.