Package org.drinkless.tdlib
Class TdApi.BanChatMember
- Enclosing class:
- TdApi
Bans a member in a chat; requires canRestrictMembers administrator right. Members can't be banned in private or secret chats. In supergroups and channels, the user will not be able to return to the group on their own using invite links, etc., unless unbanned first.
Returns Ok
-
Field Summary
FieldsModifier and TypeFieldDescriptionintPoint in time (Unix timestamp) when the user will be unbanned; 0 if never.longChat identifier.static final intIdentifier uniquely determining type of the object.Member identifier.booleanPass true to delete all messages in the chat for the user that is being removed. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which bans a member in a chat; requires canRestrictMembers administrator right.BanChatMember(long chatId, TdApi.MessageSender memberId, int bannedUntilDate, boolean revokeMessages) Creates a function, which bans a member in a chat; requires canRestrictMembers administrator 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. -
memberId
Member identifier. -
bannedUntilDate
public int bannedUntilDatePoint in time (Unix timestamp) when the user will be unbanned; 0 if never. If the user is banned for more than 366 days or for less than 30 seconds from the current time, the user is considered to be banned forever. Ignored in basic groups and if a chat is banned. -
revokeMessages
public boolean revokeMessagesPass true to delete all messages in the chat for the user that is being removed. Always true for supergroups and channels. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
BanChatMember
public BanChatMember()Default constructor for a function, which bans a member in a chat; requires canRestrictMembers administrator right. Members can't be banned in private or secret chats. In supergroups and channels, the user will not be able to return to the group on their own using invite links, etc., unless unbanned first.Returns
Ok -
BanChatMember
public BanChatMember(long chatId, TdApi.MessageSender memberId, int bannedUntilDate, boolean revokeMessages) Creates a function, which bans a member in a chat; requires canRestrictMembers administrator right. Members can't be banned in private or secret chats. In supergroups and channels, the user will not be able to return to the group on their own using invite links, etc., unless unbanned first.Returns
Ok- Parameters:
chatId- Chat identifier.memberId- Member identifier.bannedUntilDate- Point in time (Unix timestamp) when the user will be unbanned; 0 if never. If the user is banned for more than 366 days or for less than 30 seconds from the current time, the user is considered to be banned forever. Ignored in basic groups and if a chat is banned.revokeMessages- Pass true to delete all messages in the chat for the user that is being removed. Always true for supergroups and 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
-