[docs]classInlineQueryResultGame(InlineQueryResult):""" Represents a `Game <https://core.telegram.org/bots/api#games>`_. Source: https://core.telegram.org/bots/api#inlinequeryresultgame """type:Literal[InlineQueryResultType.GAME]=InlineQueryResultType.GAME"""Type of the result, must be *game*"""id:str"""Unique identifier for this result, 1-64 bytes"""game_short_name:str"""Short name of the game"""reply_markup:Optional[InlineKeyboardMarkup]=None"""*Optional*. `Inline keyboard <https://core.telegram.org/bots/features#inline-keyboards>`_ attached to the message"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,type:Literal[InlineQueryResultType.GAME]=InlineQueryResultType.GAME,id:str,game_short_name:str,reply_markup:Optional[InlineKeyboardMarkup]=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__(type=type,id=id,game_short_name=game_short_name,reply_markup=reply_markup,**__pydantic_kwargs,)