Package org.drinkless.tdlib
Class TdApi.ChatInviteLinkMember
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.ChatInviteLinkMember
-
- Enclosing class:
- TdApi
public static class TdApi.ChatInviteLinkMember extends TdApi.Object
Describes a chat member joined a chat via an invite link.
-
-
Field Summary
Fields Modifier and Type Field Description longapproverUserIdUser identifier of the chat administrator, approved user join request.static intCONSTRUCTORIdentifier uniquely determining type of the object.intjoinedChatDatePoint in time (Unix timestamp) when the user joined the chat.longuserIdUser identifier.
-
Constructor Summary
Constructors Constructor Description ChatInviteLinkMember()Describes a chat member joined a chat via an invite link.ChatInviteLinkMember(long userId, int joinedChatDate, long approverUserId)Describes a chat member joined a chat via an invite link.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
userId
public long userId
User identifier.
-
joinedChatDate
public int joinedChatDate
Point in time (Unix timestamp) when the user joined the chat.
-
approverUserId
public long approverUserId
User identifier of the chat administrator, approved user join request.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ChatInviteLinkMember
public ChatInviteLinkMember()
Describes a chat member joined a chat via an invite link.
-
ChatInviteLinkMember
public ChatInviteLinkMember(long userId, int joinedChatDate, long approverUserId)Describes a chat member joined a chat via an invite link.- Parameters:
userId- User identifier.joinedChatDate- Point in time (Unix timestamp) when the user joined the chat.approverUserId- User identifier of the chat administrator, approved user join request.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-