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

io.github.biezhi.tgbot.api.request.Keyboard Maven / Gradle / Ivy

The newest version!
package io.github.biezhi.tgbot.api.request;

import com.google.gson.Gson;

import java.io.Serializable;

/**
 * stas
 * 8/11/15
 */
public abstract class Keyboard implements Serializable {
    private final static long serialVersionUID = 0L;

    // todo remove gson
    private static Gson gson = new Gson();

    @Override
    public final String toString() {
        return gson.toJson(this);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy