Interface InternalLinkTypeChatInvite

The link is a chat invite link. Call checkChatInviteLink with the given invite link to process the link. If the link is valid and the user wants to join the chat, then call joinChatByInviteLink. Subtype of InternalLinkType.

interface InternalLinkTypeChatInvite {
    @type: "internalLinkTypeChatInvite";
    invite_link: string;
}

Properties

Properties

@type: "internalLinkTypeChatInvite"
invite_link: string

Internal representation of the invite link.