Source code for hydrogram.raw.functions.bots.set_bot_info
# 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]classSetBotInfo(TLObject):# type: ignore"""Set localized name, about text and description of a bot (or of the current account, if called by a bot). Details: - Layer: ``181`` - ID: ``10CF3123`` Parameters: lang_code (``str``): Language code, if left empty update the fallback about text and description bot (:obj:`InputUser <hydrogram.raw.base.InputUser>`, *optional*): If called by a user, must contain the peer of a bot we own. name (``str``, *optional*): New bot name about (``str``, *optional*): New about text description (``str``, *optional*): New description Returns: ``bool`` """__slots__:List[str]=["lang_code","bot","name","about","description"]ID=0x10cf3123QUALNAME="functions.bots.SetBotInfo"def__init__(self,*,lang_code:str,bot:"raw.base.InputUser"=None,name:Optional[str]=None,about:Optional[str]=None,description:Optional[str]=None)->None:self.lang_code=lang_code# stringself.bot=bot# flags.2?InputUserself.name=name# flags.3?stringself.about=about# flags.0?stringself.description=description# flags.1?string@staticmethoddefread(b:BytesIO,*args:Any)->"SetBotInfo":flags=Int.read(b)bot=TLObject.read(b)ifflags&(1<<2)elseNonelang_code=String.read(b)name=String.read(b)ifflags&(1<<3)elseNoneabout=String.read(b)ifflags&(1<<0)elseNonedescription=String.read(b)ifflags&(1<<1)elseNonereturnSetBotInfo(lang_code=lang_code,bot=bot,name=name,about=about,description=description)defwrite(self,*args)->bytes:b=BytesIO()b.write(Int(self.ID,False))flags=0flags|=(1<<2)ifself.botisnotNoneelse0flags|=(1<<3)ifself.nameisnotNoneelse0flags|=(1<<0)ifself.aboutisnotNoneelse0flags|=(1<<1)ifself.descriptionisnotNoneelse0b.write(Int(flags))ifself.botisnotNone:b.write(self.bot.write())b.write(String(self.lang_code))ifself.nameisnotNone:b.write(String(self.name))ifself.aboutisnotNone:b.write(String(self.about))ifself.descriptionisnotNone:b.write(String(self.description))returnb.getvalue()