[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"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,inline_keyboard:list[list[InlineKeyboardButton]],**__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,**__pydantic_kwargs)