messages.GetQuickReplyMessages
- class pyrogram.raw.functions.messages.GetQuickReplyMessages
Fetch (a subset or all) messages in a quick reply shortcut ».
- Details:
Layer:
223ID:
94A495C3
- Parameters:
shortcut_id (
int32-bit) – Quick reply shortcut ID.hash (
int64-bit) – Hash for pagination, generated as specified here » (not the usual algorithm used for hash generation).id (List of
int32-bit, optional) – IDs of the messages to fetch, if empty fetches all of them.
- Returns:
TL Schema
messages.getQuickReplyMessages#94a495c3
flags:#
shortcut_id:int
id:flags.0?Vector<int>
hash:long
= messages.Messages
Parameter Tree
GetQuickReplyMessages
├── shortcut_id →
int├── id →
Vector < int > (optional)└── hash →
longExample
await app.invoke(
GetQuickReplyMessages(
shortcut_id=0,
id=[0],
hash=0,
)
)