UpdateReadChannelOutbox

class pyrogram.raw.types.UpdateReadChannelOutbox

Outgoing messages in a channel/supergroup were read

Constructor of Update.

Details:
  • Layer: 223

  • ID: B75F99A9

Parameters:
  • channel_id (int 64-bit) – Channel/supergroup ID

  • max_id (int 32-bit) – Position up to which all outgoing messages are read.

TL Schema

updateReadChannelOutbox#b75f99a9
channel_id:long
max_id:int

= Update

Parameter Tree

UpdateReadChannelOutbox
├── channel_idlong
└── max_idint

Example

UpdateReadChannelOutbox(
    channel_id=0,
    max_id=0,
)