Class TdApi.AddChatMembers

  • Enclosing class:
    TdApi

    public static class TdApi.AddChatMembers
    extends TdApi.Function
    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 Detail

      • 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
        Identifier uniquely determining type of the object.
        See Also:
        Constant Field Values
    • Constructor Detail

      • AddChatMembers

        public AddChatMembers()
        Default constructor for a function, which 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)
        Creates a function, which 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 - Chat identifier.
        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.