Browse Source
Document message types that can have a default message reference
pull/10112/head
Jakub Kuczys
1 month ago
No known key found for this signature in database
GPG Key ID: 9F02686F15FCBCD3
2 changed files with
21 additions and
7 deletions
-
discord/message.py
-
docs/api.rst
|
|
@ -2010,9 +2010,15 @@ class Message(PartialMessage, Hashable): |
|
|
|
The :class:`TextChannel` or :class:`Thread` that the message was sent from. |
|
|
|
Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message. |
|
|
|
reference: Optional[:class:`~discord.MessageReference`] |
|
|
|
The message that this message references. This is only applicable to messages of |
|
|
|
type :attr:`MessageType.pins_add`, crossposted messages created by a |
|
|
|
followed channel integration, or message replies. |
|
|
|
The message that this message references. This is only applicable to message replies, |
|
|
|
crossposted messages created by a followed channel integration, and messages of type: |
|
|
|
|
|
|
|
- :attr:`MessageType.pins_add` |
|
|
|
- :attr:`MessageType.channel_follow_add` |
|
|
|
- :attr:`MessageType.thread_created` |
|
|
|
- :attr:`MessageType.thread_starter_message` |
|
|
|
- :attr:`MessageType.poll_result` |
|
|
|
- :attr:`MessageType.context_menu_command` |
|
|
|
|
|
|
|
.. versionadded:: 1.5 |
|
|
|
|
|
|
|
|
|
@ -3851,17 +3851,25 @@ of :class:`enum.Enum`. |
|
|
|
|
|
|
|
.. versionadded:: 2.5 |
|
|
|
|
|
|
|
.. attribute:: reply |
|
|
|
.. attribute:: default |
|
|
|
|
|
|
|
A standard reference used by message replies (:attr:`MessageType.reply`), |
|
|
|
crossposted messaged created by a followed channel integration, and messages of type: |
|
|
|
|
|
|
|
A message reply. |
|
|
|
- :attr:`MessageType.pins_add` |
|
|
|
- :attr:`MessageType.channel_follow_add` |
|
|
|
- :attr:`MessageType.thread_created` |
|
|
|
- :attr:`MessageType.thread_starter_message` |
|
|
|
- :attr:`MessageType.poll_result` |
|
|
|
- :attr:`MessageType.context_menu_command` |
|
|
|
|
|
|
|
.. attribute:: forward |
|
|
|
|
|
|
|
A forwarded message. |
|
|
|
|
|
|
|
.. attribute:: default |
|
|
|
.. attribute:: reply |
|
|
|
|
|
|
|
An alias for :attr:`.reply`. |
|
|
|
An alias for :attr:`.default`. |
|
|
|
|
|
|
|
.. _discord-api-audit-logs: |
|
|
|
|
|
|
|