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

me.shib.java.lib.telegram.bot.service.BotServiceWrapperResponse Maven / Gradle / Ivy

There is a newer version: 1.3.7
Show newest version
package me.shib.java.lib.telegram.bot.service;

public class BotServiceWrapperResponse {

    private boolean ok;
    private Object result;

    public boolean isOk() {
        return ok;
    }

    public void setOk(boolean ok) {
        this.ok = ok;
    }

    public Object getResult() {
        return result;
    }

    public void setResult(Object result) {
        this.result = result;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy