Module tdlight.api

Class TdApi.ChatMember

java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.ChatMember
Enclosing class:
TdApi

public static final class TdApi.ChatMember extends TdApi.Object
Describes a user or a chat as a member of another chat.
  • Field Details

    • memberId

      public TdApi.MessageSender memberId
      Identifier of the chat member. Currently, other chats can be only Left or Banned. Only supergroups and channels can have other chats as Left or Banned members and these chats must be supergroups or channels.
    • inviterUserId

      public long inviterUserId
      Identifier of a user that invited/promoted/banned this member in the chat; 0 if unknown.
    • joinedChatDate

      public int joinedChatDate
      Point in time (Unix timestamp) when the user joined/was promoted/was banned in the chat.
    • status

      public TdApi.ChatMemberStatus status
      Status of the member in the chat.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • ChatMember

      public ChatMember()
      Describes a user or a chat as a member of another chat.
    • ChatMember

      public ChatMember(TdApi.MessageSender memberId, long inviterUserId, int joinedChatDate, TdApi.ChatMemberStatus status)
      Describes a user or a chat as a member of another chat.
      Parameters:
      memberId - MessageSender Identifier of the chat member. Currently, other chats can be only Left or Banned. Only supergroups and channels can have other chats as Left or Banned members and these chats must be supergroups or channels.
      inviterUserId - long Identifier of a user that invited/promoted/banned this member in the chat; 0 if unknown.
      joinedChatDate - int Point in time (Unix timestamp) when the user joined/was promoted/was banned in the chat.
      status - ChatMemberStatus Status of the member in the chat.
    • ChatMember

      public ChatMember(DataInput input) throws IOException
      Describes a user or a chat as a member of another chat.
      Throws:
      IOException
  • Method Details