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 classThe user is a member of the chat and has some additional privileges.static classThe user or the chat was banned (and hence is not a member of the chat).static classThe user is the owner of the chat and has all the administrator privileges.static classThe user or the chat is not a chat member.static classThe user is a member of the chat, without any additional privileges or restrictions.static classThe user is under certain restrictions in the chat.Fields in org.drinkless.tdlib declared as TdApi.ChatMemberStatusModifier and TypeFieldDescriptionTdApi.ChatEventMemberPromoted.newStatusNew status of the chat member.TdApi.ChatEventMemberRestricted.newStatusNew status of the chat member.TdApi.ChatEventMemberSubscriptionExtended.newStatusNew status of the chat member.TdApi.ChatEventMemberPromoted.oldStatusPrevious status of the chat member.TdApi.ChatEventMemberRestricted.oldStatusPrevious status of the chat member.TdApi.ChatEventMemberSubscriptionExtended.oldStatusPrevious status of the chat member.TdApi.BasicGroup.statusStatus of the current user in the group.TdApi.ChatEventMemberInvited.statusNew member status.TdApi.ChatMember.statusStatus of the member in the chat.TdApi.SetChatMemberStatus.statusThe new status of the member in the chat.TdApi.Supergroup.statusStatus 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, boolean isDirectMessagesGroup, boolean isAdministeredDirectMessagesGroup, TdApi.VerificationStatus verificationStatus, boolean hasDirectMessagesGroup, boolean hasForumTabs, 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).