Interface InternalLinkTypeUserToken

The link is a link to a user by a temporary token. Call searchUserByToken with the given token to process the link. If the user is found, then call createPrivateChat and open the chat. Subtype of InternalLinkType.

interface InternalLinkTypeUserToken {
    @type: "internalLinkTypeUserToken";
    token: string;
}

Properties

Properties

@type: "internalLinkTypeUserToken"
token: string

The token.