messages.GetSavedReactionTags

class pyrogram.raw.functions.messages.GetSavedReactionTags

Fetch the full list of saved message tags created by the user.

Details:
  • Layer: 223

  • ID: 3637E05B

Parameters:
  • hash (int 64-bit) – Hash used for caching, for more info click here.

  • peer (InputPeer, optional) – If set, returns tags only used in the specified saved message dialog.

Returns:

messages.SavedReactionTags

TL Schema

messages.getSavedReactionTags#3637e05b
flags:#
peer:flags.0?InputPeer
hash:long

= messages.SavedReactionTags

Parameter Tree

GetSavedReactionTags
├── peerInputPeer (optional)
│ ├── InputPeerEmpty
│ ├── InputPeerSelf
│ ├── InputPeerChat
│ │ └── chat_idlong
│ ├── InputPeerUser
│ │ ├── user_idlong
│ │ └── access_hashlong
│ ├── InputPeerChannel
│ │ ├── channel_idlong
│ │ └── access_hashlong
│ │ ├── peerInputPeer
│ │ │ ├── InputPeerEmpty
│ │ │ ├── InputPeerSelf
│ │ │ ├── InputPeerChat
│ │ │ ├── InputPeerUser
│ │ │ ├── InputPeerChannel
│ │ │ ├── InputPeerUserFromMessage
│ │ │ └── InputPeerChannelFromMessage
│ │ ├── msg_idint
│ │ └── user_idlong
│ ├── peerInputPeer
│ │ ├── InputPeerEmpty
│ │ ├── InputPeerSelf
│ │ ├── InputPeerChat
│ │ ├── InputPeerUser
│ │ ├── InputPeerChannel
│ │ ├── InputPeerUserFromMessage
│ │ └── InputPeerChannelFromMessage
│ ├── msg_idint
│ └── channel_idlong
└── hashlong

Example

await app.invoke(
    GetSavedReactionTags(
        peer=await app.resolve_peer(chat_id),
        hash=0,
    )
)