NotifyForumTopic

class pyrogram.raw.types.NotifyForumTopic

Notifications generated by a topic in a forum.

Constructor of NotifyPeer.

Details:
  • Layer: 227

  • ID: 226E6308

Parameters:
  • peer (Peer) – Forum ID

  • top_msg_id (int 32-bit) – Topic ID

TL Schema

notifyForumTopic#226e6308
peer:Peer
top_msg_id:int

= NotifyPeer

Parameter Tree

NotifyForumTopic
├── peer → Peer
│ ├── PeerUser
│ │ └── user_id → long
│ ├── PeerChat
│ │ └── chat_id → long
│ └── PeerChannel
│ └── channel_id → long
└── top_msg_id → int

Example

NotifyForumTopic(
    peer=PeerUser(user_id=0),
    top_msg_id=0,
)