Package org.drinkless.tdlib
Class TdApi.AddChatMembers
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.Function<TdApi.FailedToAddMembers>
org.drinkless.tdlib.TdApi.AddChatMembers
- Enclosing class:
- TdApi
Adds multiple new members to a chat; requires canInviteUsers member right. 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 information about members that weren't added.
Returns FailedToAddMembers
-
Field Summary
FieldsModifier and TypeFieldDescriptionlongChat identifier.static final intIdentifier uniquely determining type of the object.long[]Identifiers of the users to be added to the chat. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which adds multiple new members to a chat; requires canInviteUsers member right.AddChatMembers(long chatId, long[] userIds) Creates a function, which adds multiple new members to a chat; requires canInviteUsers member right. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
Field Details
-
chatId
public long chatIdChat identifier. -
userIds
public long[] userIdsIdentifiers 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 CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
AddChatMembers
public AddChatMembers()Default constructor for a function, which adds multiple new members to a chat; requires canInviteUsers member right. 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 information about members that weren't added.Returns
FailedToAddMembers -
AddChatMembers
public AddChatMembers(long chatId, long[] userIds) Creates a function, which adds multiple new members to a chat; requires canInviteUsers member right. 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 information about members that weren't added.Returns
FailedToAddMembers- 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 Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-