Source code for pyrogram.raw.types.group_call_message

#  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 GroupCallMessage(TLObject): # type: ignore """Represents an `in-call message » <https://core.telegram.org/api/group-calls#in-call-messages>`_, emoji reaction, paid live story comment or standalone paid live story donation. Constructor of :obj:`~pyrogram.raw.base.GroupCallMessage`. Details: - Layer: ``229`` - ID: ``1A8AFC7E`` Parameters: id (``int`` ``32-bit``): Message ID from_id (:obj:`Peer <pyrogram.raw.base.Peer>`): Displayed message author date (``int`` ``32-bit``): Message date message (:obj:`TextWithEntities <pyrogram.raw.base.TextWithEntities>`): Message text or emoji reaction; empty for standalone paid live story donations. Must be at most `group_call_message_length_limit » <https://core.telegram.org/api/config#group-call-message-length-limit>`_ UTF-8 characters long. For paid chats, use `stars_groupcall_message_limits » <https://core.telegram.org/api/config#stars-groupcall-message-limits>`_ to source limits according to the passed value of ``paid_message_stars``, instead. from_admin (``bool``, *optional*): Whether the message was sent by a group call admin paid_message_stars (``int`` ``64-bit``, *optional*): Number of Telegram Stars donated with the message or standalone donation """ __slots__: List[str] = ["id", "from_id", "date", "message", "from_admin", "paid_message_stars"] ID = 0x1a8afc7e QUALNAME = "types.GroupCallMessage" def __init__(self, *, id: int, from_id: "raw.base.Peer", date: int, message: "raw.base.TextWithEntities", from_admin: Optional[bool] = None, paid_message_stars: Optional[int] = None) -> None: self.id = id # int self.from_id = from_id # Peer self.date = date # int self.message = message # TextWithEntities self.from_admin = from_admin # flags.1?true self.paid_message_stars = paid_message_stars # flags.0?long @staticmethod def read(b: BytesIO, *args: Any) -> "GroupCallMessage": flags = Int.read(b) from_admin = True if flags & (1 << 1) else False id = Int.read(b) from_id = TLObject.read(b) date = Int.read(b) message = TLObject.read(b) paid_message_stars = Long.read(b) if flags & (1 << 0) else None return GroupCallMessage(id=id, from_id=from_id, date=date, message=message, from_admin=from_admin, paid_message_stars=paid_message_stars) def write(self, *args) -> bytes: b = BytesIO() b.write(Int(self.ID, False)) flags = 0 flags |= (1 << 1) if self.from_admin else 0 flags |= (1 << 0) if self.paid_message_stars is not None else 0 b.write(Int(flags)) b.write(Int(self.id)) b.write(self.from_id.write()) b.write(Int(self.date)) b.write(self.message.write()) if self.paid_message_stars is not None: b.write(Long(self.paid_message_stars)) return b.getvalue()