@@ -598,6 +598,7 @@ class PartialMessage(Hashable):
598598 the constructor itself, and the second is via the following:
599599
600600 - :meth:`TextChannel.get_partial_message`
601+ - :meth:`VoiceChannel.get_partial_message`
601602 - :meth:`Thread.get_partial_message`
602603 - :meth:`DMChannel.get_partial_message`
603604
@@ -621,7 +622,7 @@ class PartialMessage(Hashable):
621622
622623 Attributes
623624 -----------
624- channel: Union[:class:`PartialMessageable`, :class:`TextChannel`, :class:`Thread`, :class:`DMChannel`]
625+ channel: Union[:class:`PartialMessageable`, :class:`TextChannel`, :class:`VoiceChannel`, :class:` Thread`, :class:`DMChannel`]
625626 The channel associated with this partial message.
626627 id: :class:`int`
627628 The message ID.
@@ -1243,7 +1244,7 @@ class Message(PartialMessage, Hashable):
12431244 This is not stored long term within Discord's servers and is only used ephemerally.
12441245 embeds: List[:class:`Embed`]
12451246 A list of embeds the message has.
1246- channel: Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]
1247+ channel: Union[:class:`TextChannel`, :class:`VoiceChannel`, :class:` Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]
12471248 The :class:`TextChannel` or :class:`Thread` that the message was sent from.
12481249 Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message.
12491250 reference: Optional[:class:`~discord.MessageReference`]
0 commit comments