Interface ChatInviteLinkMember

Describes a chat member joined a chat via an invite link.

interface ChatInviteLinkMember {
    @type: "chatInviteLinkMember";
    approver_user_id: number;
    joined_chat_date: number;
    user_id: number;
    via_chat_folder_invite_link?: boolean;
}

Properties

@type: "chatInviteLinkMember"
approver_user_id: number

User identifier of the chat administrator, approved user join request.

joined_chat_date: number

Point in time (Unix timestamp) when the user joined the chat.

user_id: number

User identifier.

via_chat_folder_invite_link?: boolean

True, if the user has joined the chat using an invite link for a chat folder.