QuickReply

class pyrogram.raw.types.QuickReply

A quick reply shortcut.

Constructor of QuickReply.

Details:
  • Layer: 223

  • ID: 697102B

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

  • shortcut (str) – Shortcut name.

  • top_message (int 32-bit) – ID of the last message in the shortcut.

  • count (int 32-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_idint
├── shortcutstring
├── top_messageint
└── countint

Example

QuickReply(
    shortcut_id=0,
    shortcut="text",
    top_message=0,
    count=0,
)