InputReplyToMonoForum

class pyrogram.raw.types.InputReplyToMonoForum

Used to send messages to a monoforum topic.

Constructor of InputReplyTo.

Details:
  • Layer: 223

  • ID: 69D66C45

Parameters:

monoforum_peer_id (InputPeer) – The topic ID.

TL Schema

inputReplyToMonoForum#69d66c45
monoforum_peer_id:InputPeer

= InputReplyTo

Parameter Tree

InputReplyToMonoForum
└── monoforum_peer_idInputPeer
├── InputPeerEmpty
├── InputPeerSelf
├── InputPeerChat
│ └── chat_idlong
├── InputPeerUser
│ ├── user_idlong
│ └── access_hashlong
│ ├── channel_idlong
│ └── access_hashlong
│ ├── peerInputPeer
│ │ ├── InputPeerEmpty
│ │ ├── InputPeerSelf
│ │ ├── InputPeerChat
│ │ ├── InputPeerUser
│ │ ├── InputPeerChannel
│ │ ├── InputPeerUserFromMessage
│ │ └── InputPeerChannelFromMessage
│ ├── msg_idint
│ └── user_idlong
├── peerInputPeer
│ ├── InputPeerEmpty
│ ├── InputPeerSelf
│ ├── InputPeerChat
│ ├── InputPeerUser
│ ├── InputPeerChannel
├── msg_idint
└── channel_idlong

Example

InputReplyToMonoForum(
    monoforum_peer_id=await app.resolve_peer(chat_id),
)