UpdateReadMonoForumOutbox

class pyrogram.raw.types.UpdateReadMonoForumOutbox

Outgoing messages in a monoforum were read.

Constructor of Update.

Details:
  • Layer: 223

  • ID: A4A79376

Parameters:
  • channel_id (int 64-bit) – ID of the monoforum.

  • saved_peer_id (Peer) – Topic ID.

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

TL Schema

updateReadMonoForumOutbox#a4a79376
channel_id:long
saved_peer_id:Peer
read_max_id:int

= Update

Parameter Tree

UpdateReadMonoForumOutbox
├── channel_idlong
├── saved_peer_idPeer
│ ├── PeerUser
│ │ └── user_idlong
│ ├── PeerChat
│ │ └── chat_idlong
│ └── PeerChannel
│ └── channel_idlong
└── read_max_idint

Example

UpdateReadMonoForumOutbox(
    channel_id=0,
    saved_peer_id=PeerUser(user_id=0),
    read_max_id=0,
)