Consider the following sequence:
- A Telegram bot sends a
Messagewith an inline keyboard withInlineKeyboardMarkupto a specificUser - When the user hits one of the buttons of an
InlineKeyboardMarkup, bot receives a response with a CallbackQuery CallbackQuerycontains amessageobject, which represents the original message, which was sent in step 1, but as far as I can see in API docs, Message does not contain any information aboutInlineKeyboardMarkuporreply_markup.
So is it possible to get InlineKeyboardMarkup of the originally sent Message?
If there is no way of getting it, are there any workarounds in this case?