MessageReplies
- class pyrogram.raw.base.MessageReplies
Info about post comments (for channels) or message replies (for groups)
- Constructors:
This base type has 1 constructor available.
Info about the comment section of a channel post, a simple message thread, a forum topic, or a direct messages topic (all features ultimately based on message threads).
TL Schema
messageReplies#83d60fc2
flags:#
comments:flags.0?true
replies:int
replies_pts:int
recent_repliers:flags.1?Vector<Peer>
channel_id:flags.0?long
max_id:flags.2?int
read_max_id:flags.3?int
= MessageReplies
Parameter Tree
MessageReplies
├── comments →
true (optional)├── replies →
int├── replies_pts →
int├── recent_repliers →
Vector < Peer > (optional)│ ├──
PeerUser│ │ └── user_id →
long│ ├──
PeerChat│ │ └── chat_id →
long│ └──
PeerChannel│ └── channel_id →
long├── channel_id →
long (optional)├── max_id →
int (optional)└── read_max_id →
int (optional)Example
MessageReplies(
comments=None,
replies=0,
replies_pts=0,
recent_repliers=[
PeerUser(user_id=0)
],
channel_id=0,
max_id=0,
read_max_id=0,
)