Interface UserLink

Contains an HTTPS URL, which can be used to get information about a user.

interface UserLink {
    @type: "userLink";
    expires_in: number;
    url: string;
}

Properties

Properties

@type: "userLink"
expires_in: number

Left time for which the link is valid, in seconds; 0 if the link is a public username link.

url: string

The URL.