Package org.drinkless.tdlib
Class TdApi.GetCallbackQueryAnswer
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.Function<TdApi.CallbackQueryAnswer>
org.drinkless.tdlib.TdApi.GetCallbackQueryAnswer
- Enclosing class:
- TdApi
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
FieldsModifier and TypeFieldDescriptionlongIdentifier of the chat with the message.static final intIdentifier uniquely determining type of the object.longIdentifier of the message from which the query originated.Query payload. -
Constructor Summary
ConstructorsConstructorDescriptionDefault 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
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
Field Details
-
chatId
public long chatIdIdentifier of the chat with the message. -
messageId
public long messageIdIdentifier of the message from which the query originated. The message must not be scheduled. -
payload
Query payload. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
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
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. The message must not be scheduled.payload- Query payload.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-