You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The type to response with, aiter :class:`InteractionCallbackType.deferred_msg_with_source` or :class:`InteractionCallbackType.deferred_update_msg` (e.g. 5 or 6)
108
+
109
+
:param hidden: Optional[bool]
110
+
Whether to defer ephemerally(only the :attr:`author` of the interaction can see the message)
111
+
112
+
.. note::
113
+
Only for :class:`InteractionCallbackType.deferred_msg_with_source`.
114
+
115
+
.. important::
116
+
If you doesn't respond with an message using :meth:`respond`
117
+
or edit the original message using :meth:`edit` within less than 3 seconds,
118
+
discord will indicates that the interaction failed and the interaction-token will be invalidated.
119
+
To provide this us this method
120
+
121
+
.. note::
122
+
A Token will be Valid for 15 Minutes so you could edit the original :attr:`message` with :meth:`edit`, :meth:`respond` or doing anything other with this interaction for 15 minutes.
123
+
after that time you have to edit the original message with the Methode :meth:`edit` of the :attr:`message` and sending new messages with the :meth:`send` Methode of :attr:`channel`
124
+
(you could not do this hidden as it isn't an respond anymore).
0 commit comments