From 3d2dedbc58c9a158071501f6bed950ed99f42a2b Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sat, 21 Jan 2023 22:48:36 -0500 Subject: [PATCH] Add Message.position and Message.application_id attributes --- discord/message.py | 14 ++++++++++++++ discord/types/message.py | 1 + 2 files changed, 15 insertions(+) diff --git a/discord/message.py b/discord/message.py index b959c8c42..62c4b5311 100644 --- a/discord/message.py +++ b/discord/message.py @@ -1438,6 +1438,16 @@ class Message(PartialMessage, Hashable): The data of the role subscription purchase or renewal that prompted this :attr:`MessageType.role_subscription_purchase` message. + .. versionadded:: 2.2 + application_id: Optional[:class:`int`] + The application ID of the application that created this message if this + message was sent by an application-owned webhook or an interaction. + + .. versionadded:: 2.2 + position: Optional[:class:`int`] + A generally increasing integer with potentially gaps or duplicates that represents + the approximate position of the message in a thread. + .. versionadded:: 2.2 guild: Optional[:class:`Guild`] The guild that the message belongs to, if applicable. @@ -1472,6 +1482,8 @@ class Message(PartialMessage, Hashable): 'components', 'interaction', 'role_subscription', + 'application_id', + 'position', ) if TYPE_CHECKING: @@ -1507,6 +1519,8 @@ class Message(PartialMessage, Hashable): self.tts: bool = data['tts'] self.content: str = data['content'] self.nonce: Optional[Union[int, str]] = data.get('nonce') + self.position: Optional[int] = data.get('position') + self.application_id: Optional[int] = utils._get_as_snowflake(data, 'application_id') self.stickers: List[StickerItem] = [StickerItem(data=d, state=state) for d in data.get('sticker_items', [])] try: diff --git a/discord/types/message.py b/discord/types/message.py index f89725992..1319b2e65 100644 --- a/discord/types/message.py +++ b/discord/types/message.py @@ -133,6 +133,7 @@ class Message(PartialMessage): referenced_message: NotRequired[Optional[Message]] interaction: NotRequired[MessageInteraction] components: NotRequired[List[Component]] + position: NotRequired[int] role_subscription_data: NotRequired[RoleSubscriptionData]