[docs]classGame(TelegramObject):""" This object represents a game. Use BotFather to create and edit games, their short names will act as unique identifiers. Source: https://core.telegram.org/bots/api#game """title:str"""Title of the game"""description:str"""Description of the game"""photo:list[PhotoSize]"""Photo that will be displayed in the game message in chats."""text:Optional[str]=None"""*Optional*. Brief description of the game or high scores included in the game message. Can be automatically edited to include current high scores for the game when the bot calls :class:`aiogram.methods.set_game_score.SetGameScore`, or manually edited using :class:`aiogram.methods.edit_message_text.EditMessageText`. 0-4096 characters."""text_entities:Optional[list[MessageEntity]]=None"""*Optional*. Special entities that appear in *text*, such as usernames, URLs, bot commands, etc."""animation:Optional[Animation]=None"""*Optional*. Animation that will be displayed in the game message in chats. Upload via `BotFather <https://t.me/botfather>`_"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,title:str,description:str,photo:list[PhotoSize],text:Optional[str]=None,text_entities:Optional[list[MessageEntity]]=None,animation:Optional[Animation]=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__(title=title,description=description,photo=photo,text=text,text_entities=text_entities,animation=animation,**__pydantic_kwargs,)