Module tdlight.api

Class TdApi.InternalLinkTypeBotStart

Enclosing class:
TdApi

public static final class TdApi.InternalLinkTypeBotStart extends TdApi.InternalLinkType
The link is a link to a chat with a Telegram bot. Call searchPublicChat with the given bot username, check that the user is a bot, show START button in the chat with the bot, and then call sendBotStartMessage with the given start parameter after the button is pressed.
  • Field Details

    • botUsername

      public String botUsername
      Username of the bot.
    • startParameter

      public String startParameter
      The parameter to be passed to sendBotStartMessage.
    • autostart

      public boolean autostart
      True, if sendBotStartMessage must be called automatically without showing the START button.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • InternalLinkTypeBotStart

      public InternalLinkTypeBotStart()
      The link is a link to a chat with a Telegram bot. Call searchPublicChat with the given bot username, check that the user is a bot, show START button in the chat with the bot, and then call sendBotStartMessage with the given start parameter after the button is pressed.
    • InternalLinkTypeBotStart

      public InternalLinkTypeBotStart(String botUsername, String startParameter, boolean autostart)
      The link is a link to a chat with a Telegram bot. Call searchPublicChat with the given bot username, check that the user is a bot, show START button in the chat with the bot, and then call sendBotStartMessage with the given start parameter after the button is pressed.
      Parameters:
      botUsername - String Username of the bot.
      startParameter - String The parameter to be passed to sendBotStartMessage.
      autostart - boolean True, if sendBotStartMessage must be called automatically without showing the START button.
    • InternalLinkTypeBotStart

      public InternalLinkTypeBotStart(DataInput input) throws IOException
      The link is a link to a chat with a Telegram bot. Call searchPublicChat with the given bot username, check that the user is a bot, show START button in the chat with the bot, and then call sendBotStartMessage with the given start parameter after the button is pressed.
      Throws:
      IOException
  • Method Details