com.annimon.tgbotsmodule.api.methods.interfaces.SpoilerMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tgbots-module Show documentation
Show all versions of tgbots-module Show documentation
Simple Java telegram bots runner built on top of the Telegram Bots library
The newest version!
package com.annimon.tgbotsmodule.api.methods.interfaces;
import java.io.Serializable;
public interface SpoilerMethod extends Method {
Boolean getHasSpoiler();
M setHasSpoiler(Boolean spoiler);
default M enableSpoiler() {
return setHasSpoiler(true);
}
default M disableSpoiler() {
return setHasSpoiler(false);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy