NotifyForumTopic

class pyrogram.raw.types.NotifyForumTopic

Notifications generated by a topic in a forum.

Constructor of NotifyPeer.

Details:
  • Layer: 223

  • 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
├── peerPeer
│ ├── PeerUser
│ │ └── user_idlong
│ ├── PeerChat
│ │ └── chat_idlong
│ └── PeerChannel
│ └── channel_idlong
└── top_msg_idint

Example

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