Uses of Class
org.drinkless.tdlib.TdApi.ChatMemberStatus
Packages that use TdApi.ChatMemberStatus
-
Uses of TdApi.ChatMemberStatus in org.drinkless.tdlib
Subclasses of TdApi.ChatMemberStatus in org.drinkless.tdlibModifier and TypeClassDescriptionstatic class
The user is a member of the chat and has some additional privileges.static class
The user or the chat was banned (and hence is not a member of the chat).static class
The user is the owner of the chat and has all the administrator privileges.static class
The user or the chat is not a chat member.static class
The user is a member of the chat, without any additional privileges or restrictions.static class
The user is under certain restrictions in the chat.Fields in org.drinkless.tdlib declared as TdApi.ChatMemberStatusModifier and TypeFieldDescriptionTdApi.ChatEventMemberPromoted.newStatus
New status of the chat member.TdApi.ChatEventMemberRestricted.newStatus
New status of the chat member.TdApi.ChatEventMemberSubscriptionExtended.newStatus
New status of the chat member.TdApi.ChatEventMemberPromoted.oldStatus
Previous status of the chat member.TdApi.ChatEventMemberRestricted.oldStatus
Previous status of the chat member.TdApi.ChatEventMemberSubscriptionExtended.oldStatus
Previous status of the chat member.TdApi.BasicGroup.status
Status of the current user in the group.TdApi.ChatEventMemberInvited.status
New member status.TdApi.ChatMember.status
Status of the member in the chat.TdApi.SetChatMemberStatus.status
The new status of the member in the chat.TdApi.Supergroup.status
Status of the current user in the supergroup or channel; custom title will always be empty.Constructors in org.drinkless.tdlib with parameters of type TdApi.ChatMemberStatusModifierConstructorDescriptionBasicGroup
(long id, int memberCount, TdApi.ChatMemberStatus status, boolean isActive, long upgradedToSupergroupId) Represents a basic group of 0-200 users (must be upgraded to a supergroup to accommodate more than 200 users).ChatEventMemberInvited
(long userId, TdApi.ChatMemberStatus status) A new chat member was invited.ChatEventMemberPromoted
(long userId, TdApi.ChatMemberStatus oldStatus, TdApi.ChatMemberStatus newStatus) A chat member has gained/lost administrator status, or the list of their administrator privileges has changed.ChatEventMemberRestricted
(TdApi.MessageSender memberId, TdApi.ChatMemberStatus oldStatus, TdApi.ChatMemberStatus newStatus) A chat member was restricted/unrestricted or banned/unbanned, or the list of their restrictions has changed.ChatEventMemberSubscriptionExtended
(long userId, TdApi.ChatMemberStatus oldStatus, TdApi.ChatMemberStatus newStatus) A chat member extended their subscription to the chat.ChatMember
(TdApi.MessageSender memberId, long inviterUserId, int joinedChatDate, TdApi.ChatMemberStatus status) Describes a user or a chat as a member of another chat.SetChatMemberStatus
(long chatId, TdApi.MessageSender memberId, TdApi.ChatMemberStatus status) Creates a function, which changes the status of a chat member; requires canInviteUsers member right to add a chat member, canPromoteMembers administrator right to change administrator rights of the member, and canRestrictMembers administrator right to change restrictions of a user.Supergroup
(long id, TdApi.Usernames usernames, int date, TdApi.ChatMemberStatus status, int memberCount, int boostLevel, boolean hasAutomaticTranslation, boolean hasLinkedChat, boolean hasLocation, boolean signMessages, boolean showMessageSender, boolean joinToSendMessages, boolean joinByRequest, boolean isSlowModeEnabled, boolean isChannel, boolean isBroadcastGroup, boolean isForum, TdApi.VerificationStatus verificationStatus, boolean hasSensitiveContent, String restrictionReason, long paidMessageStarCount, boolean hasActiveStories, boolean hasUnreadActiveStories) Represents a supergroup or channel with zero or more members (subscribers in the case of channels).