Uses of Class
org.drinkless.tdlib.TdApi.ChatMemberStatus
-
Packages that use TdApi.ChatMemberStatus Package Description org.drinkless.tdlib -
-
Uses of TdApi.ChatMemberStatus in org.drinkless.tdlib
Subclasses of TdApi.ChatMemberStatus in org.drinkless.tdlib Modifier and Type Class Description static classTdApi.ChatMemberStatusAdministratorThe user is a member of the chat and has some additional privileges.static classTdApi.ChatMemberStatusBannedThe user or the chat was banned (and hence is not a member of the chat).static classTdApi.ChatMemberStatusCreatorThe user is the owner of the chat and has all the administrator privileges.static classTdApi.ChatMemberStatusLeftThe user or the chat is not a chat member.static classTdApi.ChatMemberStatusMemberThe user is a member of the chat, without any additional privileges or restrictions.static classTdApi.ChatMemberStatusRestrictedThe user is under certain restrictions in the chat.Fields in org.drinkless.tdlib declared as TdApi.ChatMemberStatus Modifier and Type Field Description TdApi.ChatMemberStatusTdApi.ChatEventMemberPromoted. newStatusNew status of the chat member.TdApi.ChatMemberStatusTdApi.ChatEventMemberRestricted. newStatusNew status of the chat member.TdApi.ChatMemberStatusTdApi.ChatEventMemberPromoted. oldStatusPrevious status of the chat member.TdApi.ChatMemberStatusTdApi.ChatEventMemberRestricted. oldStatusPrevious status of the chat member.TdApi.ChatMemberStatusTdApi.BasicGroup. statusStatus of the current user in the group.TdApi.ChatMemberStatusTdApi.ChatEventMemberInvited. statusNew member status.TdApi.ChatMemberStatusTdApi.ChatMember. statusStatus of the member in the chat.TdApi.ChatMemberStatusTdApi.SetChatMemberStatus. statusThe new status of the member in the chat.TdApi.ChatMemberStatusTdApi.Supergroup. statusStatus of the current user in the supergroup or channel; custom title will be always empty.Constructors in org.drinkless.tdlib with parameters of type TdApi.ChatMemberStatus Constructor Description BasicGroup(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.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, needs appropriate privileges.Supergroup(long id, String username, int date, TdApi.ChatMemberStatus status, int memberCount, boolean hasLinkedChat, boolean hasLocation, boolean signMessages, boolean isSlowModeEnabled, boolean isChannel, boolean isBroadcastGroup, boolean isVerified, String restrictionReason, boolean isScam, boolean isFake)Represents a supergroup or channel with zero or more members (subscribers in the case of channels).
-