messages.GetQuickReplyMessages

class pyrogram.raw.functions.messages.GetQuickReplyMessages

Fetch (a subset or all) messages in a quick reply shortcut ».

Details:
  • Layer: 223

  • ID: 94A495C3

Parameters:
  • shortcut_id (int 32-bit) – Quick reply shortcut ID.

  • hash (int 64-bit) – Hash for pagination, generated as specified here » (not the usual algorithm used for hash generation).

  • id (List of int 32-bit, optional) – IDs of the messages to fetch, if empty fetches all of them.

Returns:

messages.Messages

TL Schema

messages.getQuickReplyMessages#94a495c3
flags:#
shortcut_id:int
id:flags.0?Vector<int>
hash:long

= messages.Messages

Parameter Tree

GetQuickReplyMessages
├── shortcut_idint
├── idVector < int > (optional)
└── hashlong

Example

await app.invoke(
    GetQuickReplyMessages(
        shortcut_id=0,
        id=[0],
        hash=0,
    )
)