replyMessage

open fun replyMessage(content: String): ReplyAction

Reply to the event with the given content.

Return

A WebhookMessageAction

Parameters

content

The content for the message.


open fun replyMessage(message: Message): ReplyAction

Reply to the event with the given content.

Return

A WebhookMessageAction

Parameters

message

The message to reply with.


open fun replyMessage(builder: MessageBuilder): ReplyAction

Reply to the event with the given content.

Return

A WebhookMessageAction

Parameters

builder

The message builder.


open fun replyMessage(builder: MessageBuilder.() -> Unit): ReplyAction

SReply to the event with the given content.

Return

A WebhookMessageAction

Parameters

builder

The message builder function.