Uses of Class
it.tdlight.jni.TdApi.ChatMemberStatus
-
Uses of TdApi.ChatMemberStatus in it.tdlight.jni
Subclasses of TdApi.ChatMemberStatus in it.tdlight.jni Modifier and Type Class Description static class
TdApi.ChatMemberStatusAdministrator
The user is a member of a chat and has some additional privileges.static class
TdApi.ChatMemberStatusBanned
The user was banned (and hence is not a member of the chat).static class
TdApi.ChatMemberStatusCreator
The user is the owner of a chat and has all the administrator privileges.static class
TdApi.ChatMemberStatusLeft
The user is not a chat member.static class
TdApi.ChatMemberStatusMember
The user is a member of a chat, without any additional privileges or restrictions.static class
TdApi.ChatMemberStatusRestricted
The user is under certain restrictions in the chat.Fields in it.tdlight.jni declared as TdApi.ChatMemberStatus Modifier and Type Field Description TdApi.ChatMemberStatus
TdApi.ChatEventMemberPromoted. newStatus
New status of the chat member.TdApi.ChatMemberStatus
TdApi.ChatEventMemberRestricted. newStatus
New status of the chat member.TdApi.ChatMemberStatus
TdApi.ChatEventMemberPromoted. oldStatus
Previous status of the chat member.TdApi.ChatMemberStatus
TdApi.ChatEventMemberRestricted. oldStatus
Previous status of the chat member.TdApi.ChatMemberStatus
TdApi.BasicGroup. status
Status of the current user in the group.TdApi.ChatMemberStatus
TdApi.ChatEventMemberInvited. status
New member status.TdApi.ChatMemberStatus
TdApi.ChatMember. status
Status of the member in the chat.TdApi.ChatMemberStatus
TdApi.SetChatMemberStatus. status
The new status of the member in the chat.TdApi.ChatMemberStatus
TdApi.Supergroup. status
Status of the current user in the supergroup or channel; custom title will be always empty.Constructors in it.tdlight.jni with parameters of type TdApi.ChatMemberStatus Constructor Description BasicGroup(int id, int memberCount, TdApi.ChatMemberStatus status, boolean isActive, int upgradedToSupergroupId)
Represents a basic group of 0-200 users (must be upgraded to a supergroup to accommodate more than 200 users).ChatEventMemberInvited(int userId, TdApi.ChatMemberStatus status)
A new chat member was invited.ChatEventMemberPromoted(int 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(int userId, TdApi.ChatMemberStatus oldStatus, TdApi.ChatMemberStatus newStatus)
A chat member was restricted/unrestricted or banned/unbanned, or the list of their restrictions has changed.ChatMember(int userId, int inviterUserId, int joinedChatDate, TdApi.ChatMemberStatus status, TdApi.BotInfo botInfo)
A user with information about joining/leaving a chat.SetChatMemberStatus(long chatId, int userId, TdApi.ChatMemberStatus status)
Changes the status of a chat member, needs appropriate privileges.Supergroup(int 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).