Module tdlight.api

Class TdApi.AddChatMembers

Enclosing class:
TdApi

public static final class TdApi.AddChatMembers extends TdApi.Function<TdApi.Ok>
Adds multiple new members to a chat. Currently, this method is only available for supergroups and channels. This method can't be used to join a chat. Members can't be added to a channel if it has more than 200 members. Returns Ok
  • Field Details

    • chatId

      public long chatId
      Chat identifier.
    • userIds

      public long[] userIds
      Identifiers of the users to be added to the chat. The maximum number of added users is 20 for supergroups and 100 for channels.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • AddChatMembers

      public AddChatMembers()
      Adds multiple new members to a chat. Currently, this method is only available for supergroups and channels. This method can't be used to join a chat. Members can't be added to a channel if it has more than 200 members. Returns Ok
    • AddChatMembers

      public AddChatMembers(long chatId, long[] userIds)
      Adds multiple new members to a chat. Currently, this method is only available for supergroups and channels. This method can't be used to join a chat. Members can't be added to a channel if it has more than 200 members. Returns Ok
      Parameters:
      chatId - long Chat identifier.
      userIds - long[] Identifiers of the users to be added to the chat. The maximum number of added users is 20 for supergroups and 100 for channels.
    • AddChatMembers

      public AddChatMembers(DataInput input) throws IOException
      Adds multiple new members to a chat. Currently, this method is only available for supergroups and channels. This method can't be used to join a chat. Members can't be added to a channel if it has more than 200 members. Returns Ok
      Throws:
      IOException
  • Method Details