You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
233 B
13 lines
233 B
package org.telegram.api;
|
|
|
|
import org.json.JSONObject;
|
|
|
|
/**
|
|
* @author Ruben Bermudez
|
|
* @version 1.0
|
|
* @brief Reply keyboard abstract type
|
|
* @date 20 of June of 2015
|
|
*/
|
|
public interface ReplyKeyboard {
|
|
JSONObject toJson();
|
|
}
|
|
|