UpdateReadMonoForumOutbox

class pyrogram.raw.types.UpdateReadMonoForumOutbox

Outgoing messages in a monoforum were read.

Constructor of Update.

Details:
  • Layer: 227

  • 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_id → long
├── saved_peer_id → Peer
│ ├── PeerUser
│ │ └── user_id → long
│ ├── PeerChat
│ │ └── chat_id → long
│ └── PeerChannel
│ └── channel_id → long
└── read_max_id → int

Example

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