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.

MessageReplies

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
├── commentstrue (optional)
├── repliesint
├── replies_ptsint
├── recent_repliersVector < Peer > (optional)
│ ├── PeerUser
│ │ └── user_idlong
│ ├── PeerChat
│ │ └── chat_idlong
│ └── PeerChannel
│ └── channel_idlong
├── channel_idlong (optional)
├── max_idint (optional)
└── read_max_idint (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,
)