interface UserInfo {
    active: boolean;
    company?: string;
    created_at: Date;
    email: string;
    id: string;
    language?: string;
    last_login: Date;
    name: string;
    newsletter: boolean;
    options: object;
    phone?: string;
    profile: string;
    tags: TagsObj[];
    timezone: string;
    updated_at: Date;
}

Hierarchy

Properties

active: boolean
company?: string
created_at: Date
email: string
id: string
language?: string
last_login: Date
name: string
newsletter: boolean
options: object
phone?: string
profile: string
tags: TagsObj[]
timezone: string
updated_at: Date