[docs]classInlineKeyboardMarkup(MutableTelegramObject):""" This object represents an `inline keyboard <https://core.telegram.org/bots/features#inline-keyboards>`_ that appears right next to the message it belongs to. Source: https://core.telegram.org/bots/api#inlinekeyboardmarkup """inline_keyboard:list[list[InlineKeyboardButton]]"""Array of button rows, each represented by an Array of :class:`aiogram.types.inline_keyboard_button.InlineKeyboardButton` objects"""force_reply:bool|None=None"""*Optional*. Pass :code:`True` if the reply interface must be shown to the user, as if they had manually selected the bot's message and tapped 'Reply'. The value of the field can't be changed when the inline keyboard is edited"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,inline_keyboard:list[list[InlineKeyboardButton]],force_reply: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__(inline_keyboard=inline_keyboard,force_reply=force_reply,**__pydantic_kwargs)