Source code for pyrogram.raw.functions.phone.send_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 SendGroupCallMessage(TLObject): # type: ignore """Send an in-call message to all participants of a video chat/livestream or live story, including in RTMP mode, see `here » <https://core.telegram.org/api/group-calls#in-call-messages>`_ for more info. .. include:: /_includes/usable-by/users.rst Details: - Layer: ``229`` - ID: ``B1D11410`` Parameters: call (:obj:`InputGroupCall <pyrogram.raw.base.InputGroupCall>`): Video chat/livestream or live story that should receive the message, reaction or donation random_id (``int`` ``64-bit``): Fresh client-generated random ID used to deduplicate the message or donation. See `here » <https://core.telegram.org/api/updates#updatemessageid-updates>`_ for more info on random ID deduplication and updateMessageID mapping. message (:obj:`TextWithEntities <pyrogram.raw.base.TextWithEntities>`): Message text or emoji reaction; pass an empty value when sending a standalone paid live story donation allow_paid_stars (``int`` ``64-bit``, *optional*): User-confirmed number of Telegram Stars to donate with a live story comment or standalone donation send_as (:obj:`InputPeer <pyrogram.raw.base.InputPeer>`, *optional*): Optional peer to display as the author of a live story message or reaction; can only be used for live stories Returns: :obj:`Updates <pyrogram.raw.base.Updates>` """ __slots__: List[str] = ["call", "random_id", "message", "allow_paid_stars", "send_as"] ID = 0xb1d11410 QUALNAME = "functions.phone.SendGroupCallMessage" def __init__(self, *, call: "raw.base.InputGroupCall", random_id: int, message: "raw.base.TextWithEntities", allow_paid_stars: Optional[int] = None, send_as: "raw.base.InputPeer" = None) -> None: self.call = call # InputGroupCall self.random_id = random_id # long self.message = message # TextWithEntities self.allow_paid_stars = allow_paid_stars # flags.0?long self.send_as = send_as # flags.1?InputPeer @staticmethod def read(b: BytesIO, *args: Any) -> "SendGroupCallMessage": flags = Int.read(b) call = TLObject.read(b) random_id = Long.read(b) message = TLObject.read(b) allow_paid_stars = Long.read(b) if flags & (1 << 0) else None send_as = TLObject.read(b) if flags & (1 << 1) else None return SendGroupCallMessage(call=call, random_id=random_id, message=message, allow_paid_stars=allow_paid_stars, send_as=send_as) def write(self, *args) -> bytes: b = BytesIO() b.write(Int(self.ID, False)) flags = 0 flags |= (1 << 0) if self.allow_paid_stars is not None else 0 flags |= (1 << 1) if self.send_as is not None else 0 b.write(Int(flags)) b.write(self.call.write()) b.write(Long(self.random_id)) b.write(self.message.write()) if self.allow_paid_stars is not None: b.write(Long(self.allow_paid_stars)) if self.send_as is not None: b.write(self.send_as.write()) return b.getvalue()