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/>.fromioimportBytesIOfromhydrogram.raw.core.primitivesimportInt,Long,Int128,Int256,Bool,Bytes,String,Double,Vectorfromhydrogram.raw.coreimportTLObjectfromhydrogramimportrawfromtypingimportList,Optional,Any# # # # # # # # # # # # # # # # # # # # # # # ## !!! WARNING !!! ## This is a generated file! ## All changes made in this file will be lost! ## # # # # # # # # # # # # # # # # # # # # # # #
[docs]classTranslateText(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=0x63183030QUALNAME="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# stringself.peer=peer# flags.0?InputPeerself.id=id# flags.0?Vector<int>self.text=text# flags.1?Vector<TextWithEntities>@staticmethoddefread(b:BytesIO,*args:Any)->"TranslateText":flags=Int.read(b)peer=TLObject.read(b)ifflags&(1<<0)elseNoneid=TLObject.read(b,Int)ifflags&(1<<0)else[]text=TLObject.read(b)ifflags&(1<<1)else[]to_lang=String.read(b)returnTranslateText(to_lang=to_lang,peer=peer,id=id,text=text)defwrite(self,*args)->bytes:b=BytesIO()b.write(Int(self.ID,False))flags=0flags|=(1<<0)ifself.peerisnotNoneelse0flags|=(1<<0)ifself.idelse0flags|=(1<<1)ifself.textelse0b.write(Int(flags))ifself.peerisnotNone:b.write(self.peer.write())ifself.idisnotNone:b.write(Vector(self.id,Int))ifself.textisnotNone:b.write(Vector(self.text))b.write(String(self.to_lang))returnb.getvalue()