Package org.drinkless.tdlib
Class TdApi.AddChatMember
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.Function<TdApi.FailedToAddMembers>
org.drinkless.tdlib.TdApi.AddChatMember
- Enclosing class:
- TdApi
Adds a new member to a chat; requires canInviteUsers member right. Members can't be added to private or secret chats. 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.intThe number of earlier messages from the chat to be forwarded to the new member; up to 100.longIdentifier of the user. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which adds a new member to a chat; requires canInviteUsers member right.AddChatMember(long chatId, long userId, int forwardLimit) Creates a function, which adds a new member 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. -
userId
public long userIdIdentifier of the user. -
forwardLimit
public int forwardLimitThe number of earlier messages from the chat to be forwarded to the new member; up to 100. Ignored for supergroups and channels, or if the added user is a bot. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
AddChatMember
public AddChatMember()Default constructor for a function, which adds a new member to a chat; requires canInviteUsers member right. Members can't be added to private or secret chats. Returns information about members that weren't added.Returns
FailedToAddMembers -
AddChatMember
public AddChatMember(long chatId, long userId, int forwardLimit) Creates a function, which adds a new member to a chat; requires canInviteUsers member right. Members can't be added to private or secret chats. Returns information about members that weren't added.Returns
FailedToAddMembers- Parameters:
chatId- Chat identifier.userId- Identifier of the user.forwardLimit- The number of earlier messages from the chat to be forwarded to the new member; up to 100. Ignored for supergroups and channels, or if the added user is a bot.
-
-
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
-