[docs]classDirectMessagesTopic(TelegramObject):""" Describes a topic of a direct messages chat. Source: https://core.telegram.org/bots/api#directmessagestopic """topic_id:int"""Unique identifier of the topic. This number may have more than 32 significant bits and some programming languages may have difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a 64-bit integer or double-precision float type are safe for storing this identifier"""user:User|None=None"""*Optional*. Information about the user that created the topic. Currently, it is always present"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,topic_id:int,user:User|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__(topic_id=topic_id,user=user,**__pydantic_kwargs)