UpdateReadChannelDiscussionOutbox

class pyrogram.raw.types.UpdateReadChannelDiscussionOutbox

Outgoing comments in a discussion thread were marked as read

Constructor of Update.

Details:
  • Layer: 223

  • ID: 695C9E7C

Parameters:
  • channel_id (int 64-bit) – Supergroup ID

  • top_msg_id (int 32-bit) – ID of the group message that started the thread

  • read_max_id (int 32-bit) – Message ID of latest read outgoing message for this thread

TL Schema

updateReadChannelDiscussionOutbox#695c9e7c
channel_id:long
top_msg_id:int
read_max_id:int

= Update

Parameter Tree

UpdateReadChannelDiscussionOutbox
├── channel_idlong
├── top_msg_idint
└── read_max_idint

Example

UpdateReadChannelDiscussionOutbox(
    channel_id=0,
    top_msg_id=0,
    read_max_id=0,
)