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

me.shib.java.lib.telegram.bot.types.ForceReply Maven / Gradle / Ivy

package me.shib.java.lib.telegram.bot.types;

public class ForceReply implements ReplyMarkup {

    private final boolean force_reply = true;
    private boolean selective;

    public ForceReply(boolean selective) {
        this.selective = selective;
    }

    public ForceReply() {
        this.selective = false;
    }

    public boolean getForce_reply() {
        return force_reply;
    }

    public boolean isSelective() {
        return selective;
    }

    @Override
    public String toString() {
        return "ForceReply [force_reply=" + force_reply + ", selective=" + selective + "]";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy