Source code for hydrogram.raw.functions.channels.create_forum_topic
# 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]classCreateForumTopic(TLObject):# type: ignore"""Create a forum topic; requires manage_topics rights. Details: - Layer: ``181`` - ID: ``F40C0224`` Parameters: channel (:obj:`InputChannel <hydrogram.raw.base.InputChannel>`): The forum title (``str``): Topic title (maximum UTF-8 length: 128) random_id (``int`` ``64-bit``): Unique client message ID to prevent duplicate sending of the same event icon_color (``int`` ``32-bit``, *optional*): If no custom emoji icon is specified, specifies the color of the fallback topic icon (RGB), one of 0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, 0xFF93B2, or 0xFB6F5F. icon_emoji_id (``int`` ``64-bit``, *optional*): ID of the custom emoji used as topic icon. Telegram Premium users can use any custom emoji, other users can only use the custom emojis contained in the inputStickerSetEmojiDefaultTopicIcons emoji pack. send_as (:obj:`InputPeer <hydrogram.raw.base.InputPeer>`, *optional*): Create the topic as the specified peer Returns: :obj:`Updates <hydrogram.raw.base.Updates>` """__slots__:List[str]=["channel","title","random_id","icon_color","icon_emoji_id","send_as"]ID=0xf40c0224QUALNAME="functions.channels.CreateForumTopic"def__init__(self,*,channel:"raw.base.InputChannel",title:str,random_id:int,icon_color:Optional[int]=None,icon_emoji_id:Optional[int]=None,send_as:"raw.base.InputPeer"=None)->None:self.channel=channel# InputChannelself.title=title# stringself.random_id=random_id# longself.icon_color=icon_color# flags.0?intself.icon_emoji_id=icon_emoji_id# flags.3?longself.send_as=send_as# flags.2?InputPeer@staticmethoddefread(b:BytesIO,*args:Any)->"CreateForumTopic":flags=Int.read(b)channel=TLObject.read(b)title=String.read(b)icon_color=Int.read(b)ifflags&(1<<0)elseNoneicon_emoji_id=Long.read(b)ifflags&(1<<3)elseNonerandom_id=Long.read(b)send_as=TLObject.read(b)ifflags&(1<<2)elseNonereturnCreateForumTopic(channel=channel,title=title,random_id=random_id,icon_color=icon_color,icon_emoji_id=icon_emoji_id,send_as=send_as)defwrite(self,*args)->bytes:b=BytesIO()b.write(Int(self.ID,False))flags=0flags|=(1<<0)ifself.icon_colorisnotNoneelse0flags|=(1<<3)ifself.icon_emoji_idisnotNoneelse0flags|=(1<<2)ifself.send_asisnotNoneelse0b.write(Int(flags))b.write(self.channel.write())b.write(String(self.title))ifself.icon_colorisnotNone:b.write(Int(self.icon_color))ifself.icon_emoji_idisnotNone:b.write(Long(self.icon_emoji_id))b.write(Long(self.random_id))ifself.send_asisnotNone:b.write(self.send_as.write())returnb.getvalue()