Module tdlight.api

Class TdApi.ReplyMarkupShowKeyboard

Enclosing class:
TdApi

public static final class TdApi.ReplyMarkupShowKeyboard extends TdApi.ReplyMarkup
Contains a custom keyboard layout to quickly reply to bots.
  • Field Details

    • rows

      public TdApi.KeyboardButton[][] rows
      A list of rows of bot keyboard buttons.
    • isPersistent

      public boolean isPersistent
      True, if the keyboard is supposed to always be shown when the ordinary keyboard is hidden.
    • resizeKeyboard

      public boolean resizeKeyboard
      True, if the application needs to resize the keyboard vertically.
    • oneTime

      public boolean oneTime
      True, if the application needs to hide the keyboard after use.
    • isPersonal

      public boolean isPersonal
      True, if the keyboard must automatically be shown to the current user. For outgoing messages, specify true to show the keyboard only for the mentioned users and for the target user of a reply.
    • inputFieldPlaceholder

      public String inputFieldPlaceholder
      If non-empty, the placeholder to be shown in the input field when the keyboard is active; 0-64 characters.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • ReplyMarkupShowKeyboard

      public ReplyMarkupShowKeyboard()
      Contains a custom keyboard layout to quickly reply to bots.
    • ReplyMarkupShowKeyboard

      public ReplyMarkupShowKeyboard(TdApi.KeyboardButton[][] rows, boolean isPersistent, boolean resizeKeyboard, boolean oneTime, boolean isPersonal, String inputFieldPlaceholder)
      Contains a custom keyboard layout to quickly reply to bots.
      Parameters:
      rows - KeyboardButton[][] A list of rows of bot keyboard buttons.
      isPersistent - boolean True, if the keyboard is supposed to always be shown when the ordinary keyboard is hidden.
      resizeKeyboard - boolean True, if the application needs to resize the keyboard vertically.
      oneTime - boolean True, if the application needs to hide the keyboard after use.
      isPersonal - boolean True, if the keyboard must automatically be shown to the current user. For outgoing messages, specify true to show the keyboard only for the mentioned users and for the target user of a reply.
      inputFieldPlaceholder - String If non-empty, the placeholder to be shown in the input field when the keyboard is active; 0-64 characters.
    • ReplyMarkupShowKeyboard

      public ReplyMarkupShowKeyboard(DataInput input) throws IOException
      Contains a custom keyboard layout to quickly reply to bots.
      Throws:
      IOException
  • Method Details