interface User {
    auth_token?: string;
    code_context_id?: string;
    created_at?: string;
    email: string;
    first_name?: string;
    id: string;
    isAuthenticated: boolean;
    isLocked: boolean;
    last_name?: string;
    role: string;
    settings: UserSettings;
    userStatus: UserStatus;
}

Properties

auth_token?: string
code_context_id?: string
created_at?: string
email: string
first_name?: string
id: string
isAuthenticated: boolean
isLocked: boolean
last_name?: string
role: string
settings: UserSettings
userStatus: UserStatus