Package org.drinkless.tdlib
Class TdApi.GetCallbackQueryAnswer
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Function
-
- org.drinkless.tdlib.TdApi.GetCallbackQueryAnswer
-
- Enclosing class:
- TdApi
public static class TdApi.GetCallbackQueryAnswer extends TdApi.Function
Sends a callback query to a bot and returns an answer. Returns an error with code 502 if the bot fails to answer the query before the query timeout expires.Returns
CallbackQueryAnswer
-
-
Field Summary
Fields Modifier and Type Field Description longchatIdIdentifier of the chat with the message.static intCONSTRUCTORIdentifier uniquely determining type of the object.longmessageIdIdentifier of the message from which the query originated.TdApi.CallbackQueryPayloadpayloadQuery payload.
-
Constructor Summary
Constructors Constructor Description GetCallbackQueryAnswer()Default constructor for a function, which sends a callback query to a bot and returns an answer.GetCallbackQueryAnswer(long chatId, long messageId, TdApi.CallbackQueryPayload payload)Creates a function, which sends a callback query to a bot and returns an answer.
-
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
-
chatId
public long chatId
Identifier of the chat with the message.
-
messageId
public long messageId
Identifier of the message from which the query originated.
-
payload
public TdApi.CallbackQueryPayload payload
Query payload.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
GetCallbackQueryAnswer
public GetCallbackQueryAnswer()
Default constructor for a function, which sends a callback query to a bot and returns an answer. Returns an error with code 502 if the bot fails to answer the query before the query timeout expires.Returns
CallbackQueryAnswer
-
GetCallbackQueryAnswer
public GetCallbackQueryAnswer(long chatId, long messageId, TdApi.CallbackQueryPayload payload)Creates a function, which sends a callback query to a bot and returns an answer. Returns an error with code 502 if the bot fails to answer the query before the query timeout expires.Returns
CallbackQueryAnswer- Parameters:
chatId- Identifier of the chat with the message.messageId- Identifier of the message from which the query originated.payload- Query payload.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-