# Pyrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
#
# This file is part of Pyrogram.
#
# Pyrogram is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pyrogram is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
from io import BytesIO
from pyrogram.raw.core.primitives import Int, Long, Int128, Int256, Bool, Bytes, String, Double, Vector
from pyrogram.raw.core import TLObject
from pyrogram import raw
from typing import List, Optional, Any
# # # # # # # # # # # # # # # # # # # # # # # #
# !!! WARNING !!! #
# This is a generated file! #
# All changes made in this file will be lost! #
# # # # # # # # # # # # # # # # # # # # # # # #
[docs]
class MessageReplies(TLObject): # type: ignore
"""Info about `the comment section of a channel post, a simple message thread, a forum topic, or a direct messages topic <https://core.telegram.org/api/threads>`_ (all features ultimately based on message threads).
Constructor of :obj:`~pyrogram.raw.base.MessageReplies`.
Details:
- Layer: ``229``
- ID: ``83D60FC2``
Parameters:
replies (``int`` ``32-bit``):
Contains the total number of replies in this thread or comment section.
replies_pts (``int`` ``32-bit``):
`PTS <https://core.telegram.org/api/updates>`_ of the message that started this thread.
comments (``bool``, *optional*):
Whether this constructor contains information about the `comment section of a channel post, or a simple message thread <https://core.telegram.org/api/threads>`_
recent_repliers (List of :obj:`Peer <pyrogram.raw.base.Peer>`, *optional*):
For channel post comments, contains information about the last few comment posters for a specific thread, to show a small list of commenter profile pictures in client previews.
channel_id (``int`` ``64-bit``, *optional*):
For channel post comments, contains the ID of the associated `discussion supergroup <https://core.telegram.org/api/discussion>`_
max_id (``int`` ``32-bit``, *optional*):
ID of the latest message in this thread or comment section.
read_max_id (``int`` ``32-bit``, *optional*):
Contains the ID of the latest read message in this thread or comment section.
"""
__slots__: List[str] = ["replies", "replies_pts", "comments", "recent_repliers", "channel_id", "max_id", "read_max_id"]
ID = 0x83d60fc2
QUALNAME = "types.MessageReplies"
def __init__(self, *, replies: int, replies_pts: int, comments: Optional[bool] = None, recent_repliers: Optional[List["raw.base.Peer"]] = None, channel_id: Optional[int] = None, max_id: Optional[int] = None, read_max_id: Optional[int] = None) -> None:
self.replies = replies # int
self.replies_pts = replies_pts # int
self.comments = comments # flags.0?true
self.recent_repliers = recent_repliers # flags.1?Vector<Peer>
self.channel_id = channel_id # flags.0?long
self.max_id = max_id # flags.2?int
self.read_max_id = read_max_id # flags.3?int
@staticmethod
def read(b: BytesIO, *args: Any) -> "MessageReplies":
flags = Int.read(b)
comments = True if flags & (1 << 0) else False
replies = Int.read(b)
replies_pts = Int.read(b)
recent_repliers = TLObject.read(b) if flags & (1 << 1) else []
channel_id = Long.read(b) if flags & (1 << 0) else None
max_id = Int.read(b) if flags & (1 << 2) else None
read_max_id = Int.read(b) if flags & (1 << 3) else None
return MessageReplies(replies=replies, replies_pts=replies_pts, comments=comments, recent_repliers=recent_repliers, channel_id=channel_id, max_id=max_id, read_max_id=read_max_id)
def write(self, *args) -> bytes:
b = BytesIO()
b.write(Int(self.ID, False))
flags = 0
flags |= (1 << 0) if self.comments else 0
flags |= (1 << 1) if self.recent_repliers else 0
flags |= (1 << 0) if self.channel_id is not None else 0
flags |= (1 << 2) if self.max_id is not None else 0
flags |= (1 << 3) if self.read_max_id is not None else 0
b.write(Int(flags))
b.write(Int(self.replies))
b.write(Int(self.replies_pts))
if self.recent_repliers:
b.write(Vector(self.recent_repliers))
if self.channel_id is not None:
b.write(Long(self.channel_id))
if self.max_id is not None:
b.write(Int(self.max_id))
if self.read_max_id is not None:
b.write(Int(self.read_max_id))
return b.getvalue()