Class 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 Details

    • 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

      Query payload.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
      Constant Field Values
  • Constructor Details

    • GetCallbackQueryAnswer

      public GetCallbackQueryAnswer()
      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)
      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 - long Identifier of the chat with the message.
      messageId - long Identifier of the message from which the query originated.
      payload - CallbackQueryPayload Query payload.
    • GetCallbackQueryAnswer

      public GetCallbackQueryAnswer​(DataInput input) throws IOException
      Throws:
      IOException
  • Method Details