16 lines
513 B
Java
Raw Normal View History

2016-04-12 19:53:21 +02:00
package org.telegram.telegrambots;
2016-01-14 01:14:53 +01:00
/**
* @author Ruben Bermudez
* @version 1.0
2016-04-11 02:53:53 +02:00
* @brief Constants needed for Telegram Bots API
2016-01-14 01:14:53 +01:00
* @date 20 of June of 2015
*/
public class Constants {
2016-01-20 21:42:28 +01:00
public static final String BASEURL = "https://api.telegram.org/bot";
2016-04-12 19:53:21 +02:00
public static final String RESPONSEFIELDOK = "ok";
public static final String RESPONSEFIELDRESULT = "result";
2016-05-09 02:56:49 +02:00
public static final String ERRORDESCRIPTIONFIELD = "description";
public static final String ERRORCODEFIELD = "error_code";
2016-01-14 01:14:53 +01:00
}