io.github.biezhi.tgbot.api.request.Keyboard Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegram-bot-api Show documentation
Show all versions of telegram-bot-api Show documentation
Telegram bot library by Java
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);
}
}