Package org.drinkless.tdlib
Class TdApi.AnswerCallbackQuery
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Function
-
- org.drinkless.tdlib.TdApi.AnswerCallbackQuery
-
- Enclosing class:
- TdApi
public static class TdApi.AnswerCallbackQuery extends TdApi.Function
Sets the result of a callback query; for bots only.Returns
Ok
-
-
Field Summary
Fields Modifier and Type Field Description intcacheTimeTime during which the result of the query can be cached, in seconds.longcallbackQueryIdIdentifier of the callback query.static intCONSTRUCTORIdentifier uniquely determining type of the object.booleanshowAlertIf true, an alert must be shown to the user instead of a toast notification.StringtextText of the answer.StringurlURL to be opened.
-
Constructor Summary
Constructors Constructor Description AnswerCallbackQuery()Default constructor for a function, which sets the result of a callback query; for bots only.AnswerCallbackQuery(long callbackQueryId, String text, boolean showAlert, String url, int cacheTime)Creates a function, which sets the result of a callback query; for bots only.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
-
-
-
Field Detail
-
callbackQueryId
public long callbackQueryId
Identifier of the callback query.
-
text
public String text
Text of the answer.
-
showAlert
public boolean showAlert
If true, an alert must be shown to the user instead of a toast notification.
-
url
public String url
URL to be opened.
-
cacheTime
public int cacheTime
Time during which the result of the query can be cached, in seconds.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
AnswerCallbackQuery
public AnswerCallbackQuery()
Default constructor for a function, which sets the result of a callback query; for bots only.Returns
Ok
-
AnswerCallbackQuery
public AnswerCallbackQuery(long callbackQueryId, String text, boolean showAlert, String url, int cacheTime)Creates a function, which sets the result of a callback query; for bots only.Returns
Ok- Parameters:
callbackQueryId- Identifier of the callback query.text- Text of the answer.showAlert- If true, an alert must be shown to the user instead of a toast notification.url- URL to be opened.cacheTime- Time during which the result of the query can be cached, in seconds.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-