[docs]classForumTopicCreated(TelegramObject):""" This object represents a service message about a new forum topic created in the chat. Source: https://core.telegram.org/bots/api#forumtopiccreated """name:str"""Name of the topic"""icon_color:int"""Color of the topic icon in RGB format"""icon_custom_emoji_id:str|None=None"""*Optional*. Unique identifier of the custom emoji shown as the topic icon"""is_name_implicit:bool|None=None"""*Optional*. :code:`True`, if the name of the topic wasn't specified explicitly by its creator and likely needs to be changed by the bot"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,name:str,icon_color:int,icon_custom_emoji_id:str|None=None,is_name_implicit:bool|None=None,**__pydantic_kwargs:Any,)->None:# DO NOT EDIT MANUALLY!!!# This method was auto-generated via `butcher`# Is needed only for type checking and IDE support without any additional pluginssuper().__init__(name=name,icon_color=icon_color,icon_custom_emoji_id=icon_custom_emoji_id,is_name_implicit=is_name_implicit,**__pydantic_kwargs,)