Source code for hydrogram.raw.functions.messages.translate_text

#  Hydrogram - Telegram MTProto API Client Library for Python
#  Copyright (C) 2023-present Hydrogram <https://hydrogram.org>
#
#  This file is part of Hydrogram.
#
#  Hydrogram 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.
#
#  Hydrogram 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 Hydrogram.  If not, see <http://www.gnu.org/licenses/>.

from io import BytesIO

from hydrogram.raw.core.primitives import Int, Long, Int128, Int256, Bool, Bytes, String, Double, Vector
from hydrogram.raw.core import TLObject
from hydrogram 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 TranslateText(TLObject): # type: ignore """Translate a given text. Details: - Layer: ``181`` - ID: ``63183030`` Parameters: to_lang (``str``): Two-letter ISO 639-1 language code of the language to which the message is translated peer (:obj:`InputPeer <hydrogram.raw.base.InputPeer>`, *optional*): If the text is a chat message, the peer ID id (List of ``int`` ``32-bit``, *optional*): A list of message IDs to translate text (List of :obj:`TextWithEntities <hydrogram.raw.base.TextWithEntities>`, *optional*): A list of styled messages to translate Returns: :obj:`messages.TranslatedText <hydrogram.raw.base.messages.TranslatedText>` """ __slots__: List[str] = ["to_lang", "peer", "id", "text"] ID = 0x63183030 QUALNAME = "functions.messages.TranslateText" def __init__(self, *, to_lang: str, peer: "raw.base.InputPeer" = None, id: Optional[List[int]] = None, text: Optional[List["raw.base.TextWithEntities"]] = None) -> None: self.to_lang = to_lang # string self.peer = peer # flags.0?InputPeer self.id = id # flags.0?Vector<int> self.text = text # flags.1?Vector<TextWithEntities> @staticmethod def read(b: BytesIO, *args: Any) -> "TranslateText": flags = Int.read(b) peer = TLObject.read(b) if flags & (1 << 0) else None id = TLObject.read(b, Int) if flags & (1 << 0) else [] text = TLObject.read(b) if flags & (1 << 1) else [] to_lang = String.read(b) return TranslateText(to_lang=to_lang, peer=peer, id=id, text=text) def write(self, *args) -> bytes: b = BytesIO() b.write(Int(self.ID, False)) flags = 0 flags |= (1 << 0) if self.peer is not None else 0 flags |= (1 << 0) if self.id else 0 flags |= (1 << 1) if self.text else 0 b.write(Int(flags)) if self.peer is not None: b.write(self.peer.write()) if self.id is not None: b.write(Vector(self.id, Int)) if self.text is not None: b.write(Vector(self.text)) b.write(String(self.to_lang)) return b.getvalue()