Module tdlight.api

Class TdApi.SendBotStartMessage

Enclosing class:
TdApi

public static final class TdApi.SendBotStartMessage extends TdApi.Function<TdApi.Message>
Invites a bot to a chat (if it is not yet a member) and sends it the /start command. Bots can't be invited to a private chat other than the chat with the bot. Bots can't be invited to channels (although they can be added as admins) and secret chats. Returns the sent message. Returns Message
  • Field Details

    • botUserId

      public long botUserId
      Identifier of the bot.
    • chatId

      public long chatId
      Identifier of the target chat.
    • parameter

      public String parameter
      A hidden parameter sent to the bot for deep linking purposes (https://core.telegram.org/bots#deep-linking).
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • SendBotStartMessage

      public SendBotStartMessage()
      Invites a bot to a chat (if it is not yet a member) and sends it the /start command. Bots can't be invited to a private chat other than the chat with the bot. Bots can't be invited to channels (although they can be added as admins) and secret chats. Returns the sent message. Returns Message
    • SendBotStartMessage

      public SendBotStartMessage(long botUserId, long chatId, String parameter)
      Invites a bot to a chat (if it is not yet a member) and sends it the /start command. Bots can't be invited to a private chat other than the chat with the bot. Bots can't be invited to channels (although they can be added as admins) and secret chats. Returns the sent message. Returns Message
      Parameters:
      botUserId - long Identifier of the bot.
      chatId - long Identifier of the target chat.
      parameter - String A hidden parameter sent to the bot for deep linking purposes (https://core.telegram.org/bots#deep-linking).
    • SendBotStartMessage

      public SendBotStartMessage(DataInput input) throws IOException
      Invites a bot to a chat (if it is not yet a member) and sends it the /start command. Bots can't be invited to a private chat other than the chat with the bot. Bots can't be invited to channels (although they can be added as admins) and secret chats. Returns the sent message. Returns Message
      Throws:
      IOException
  • Method Details