messages.CheckQuickReplyShortcut

class pyrogram.raw.functions.messages.CheckQuickReplyShortcut

Before offering the user the choice to add a message to a quick reply shortcut, to make sure that none of the limits specified here » were reached.

Details:
  • Layer: 223

  • ID: F1D0FBD3

Parameters:

shortcut (str) – Shorcut name (not ID!).

Returns:

bool

TL Schema

messages.checkQuickReplyShortcut#f1d0fbd3
shortcut:string

= Bool

Parameter Tree

CheckQuickReplyShortcut
└── shortcutstring

Example

await app.invoke(
    CheckQuickReplyShortcut(
        shortcut="text",
    )
)