An interface describing a user of an application or a handled request.

interface User {
    email?: string;
    id?: string | number;
    ip_address?: string;
    segment?: string;
    username?: string;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

email?: string
id?: string | number
ip_address?: string
segment?: string

Functonality for segment has been removed. Use a custom tag or context instead to capture this information.

username?: string