UpdateMessageID

class pyrogram.raw.types.UpdateMessageID

Sent message with random_id client identifier was assigned an identifier.

Constructor of Update.

Details:
  • Layer: 223

  • ID: 4E90BFD6

Parameters:
  • id (int 32-bit) – id identifier of a respective Message

  • random_id (int 64-bit) – Previously transferred client random_id identifier

TL Schema

updateMessageID#4e90bfd6
id:int
random_id:long

= Update

Parameter Tree

UpdateMessageID
├── idint
└── random_idlong

Example

UpdateMessageID(
    id=0,
    random_id=app.rnd_id(),
)