messages.ReceivedQueue

class pyrogram.raw.functions.messages.ReceivedQueue

Confirms receipt of messages in a secret chat by client, cancels push notifications. The method returns a list of random_ids of messages for which push notifications were cancelled.

Details:
  • Layer: 223

  • ID: 55A5BB66

Parameters:
max_qts (int 32-bit):

Maximum qts value available at the client

Returns:

List of int 64-bit

TL Schema

messages.receivedQueue#55a5bb66
max_qts:int

= Vector<long>

Parameter Tree

ReceivedQueue
└── max_qtsint

Example

await app.invoke(
    ReceivedQueue(
        max_qts=0,
    )
)