Skip to content

$interactionDefer

$interactionDefer defers an Interaction of the last 15 minutes.

Usage

$interactionDefer[ephemeral]

Parameters

FieldTypeDescriptionRequired
ephemeralbooleanVisible to the command author only?true

Example(s)

1
client.command({
2
name: "exampleButton",
3
type: "interaction",
4
prototype: "button",
5
code: `
6
$interactionFollowUp[This is the second message!]
7
$interactionFollowUp[This is the first message!]
8
$interactionDefer[true]`
9
});