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

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

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

public class InlineQuery {

    private String id;
    private User from;
    private String query;
    private String offset;

    public String getId() {
        return id;
    }

    public User getFrom() {
        return from;
    }

    public String getQuery() {
        return query;
    }

    public String getOffset() {
        return offset;
    }

    @Override
    public String toString() {
        return "InlineQuery [id=" + id + ", from=" + from + ", query=" + query + ", offset=" + offset + "]";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy