sendMessage

open fun sendMessage(content: String): WebhookMessageAction<Message>

Send a follow-up message with the given content.

Return

A WebhookMessageAction

Parameters

content

The content for the message.


open fun sendMessage(message: Message): WebhookMessageAction<Message>

Send a follow-up message with the given content.

Return

A WebhookMessageAction

Parameters

message

The message to send.


open fun sendMessage(builder: MessageBuilder): WebhookMessageAction<Message>

Send a follow-up message with the given content.

Return

A WebhookMessageAction

Parameters

builder

The message builder.


open fun sendMessage(builder: MessageBuilder.() -> Unit): WebhookMessageAction<Message>

Send a follow-up message with the given content.

Return

A WebhookMessageAction

Parameters

builder

The message builder function.