All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pro.zackpollard.telegrambot.api.chat.message.ReplyMarkup Maven / Gradle / Ivy

There is a newer version: 1.6.5
Show newest version
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