pro.zackpollard.telegrambot.api.chat.message.ReplyMarkup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtelegram-botapi Show documentation
Show all versions of jtelegram-botapi Show documentation
The Java Telegram Bot API is a wrapper for the Telegram HTTP Bot API
package pro.zackpollard.telegrambot.api.chat.message;
/**
* @author Zack Pollard
*/
public interface ReplyMarkup {
/**
* Gets whether the reply markup will only show for selected users
* Targets: 1) users that are @mentioned in the text of the Message object;
* 2) if the bot's message is a reply (has reply_to_message_id), sender of the original message.
*
* @return Selective option, default false
*/
boolean getSelective();
void setSelective(boolean selective);
ReplyMarkupType getType();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy