Package org.drinkless.tdlib
Class TdApi.AddChatMembers
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Function
-
- org.drinkless.tdlib.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 Summary
Fields Modifier and Type Field Description longchatIdChat identifier.static intCONSTRUCTORIdentifier uniquely determining type of the object.long[]userIdsIdentifiers of the users to be added to the chat.
-
Constructor Summary
Constructors Constructor Description AddChatMembers()Default constructor for a function, which adds multiple new members to a chat.AddChatMembers(long chatId, long[] userIds)Creates a function, which adds multiple new members to a chat.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
-
-
-
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.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-