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

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

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

public class GroupChat {

    private long id;
    private String title;

    protected GroupChat(long id, String title) {
        this.id = id;
        this.title = title;
    }

    public long getId() {
        return id;
    }

    public String getTitle() {
        return title;
    }

    @Override
    public String toString() {
        return "GroupChat [id=" + id + ", title=" + title + "]";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy