QuickReply
- class pyrogram.raw.types.QuickReply
A quick reply shortcut.
Constructor of
QuickReply.- Details:
Layer:
223ID:
697102B
- Parameters:
shortcut_id (
int32-bit) – Unique shortcut ID.shortcut (
str) – Shortcut name.top_message (
int32-bit) – ID of the last message in the shortcut.count (
int32-bit) – Total number of messages in the shortcut.
TL Schema
quickReply#697102b
shortcut_id:int
shortcut:string
top_message:int
count:int
= QuickReply
Parameter Tree
QuickReply
├── shortcut_id →
int├── shortcut →
string├── top_message →
int└── count →
intExample
QuickReply(
shortcut_id=0,
shortcut="text",
top_message=0,
count=0,
)