So the thought is that a user A replies to a post in a chat from user B using a command /command. How can we get the contents of the message (of user B)?
Like, we get an Update update and I can do
String messageText = update.getMessage().getText(); // what user A sent aka "\command" string
long messageId = update.getMessage().getMessageId();
But what commands do I use to get the message of user B which is technically inside update, right?