interface LegacyUser {
    activated: boolean;
    appToken?: string;
    created?: Moment;
    email: string;
    id?: string;
    language: string;
    modified?: Moment;
    multiSessionAllowed: boolean;
    name: string;
    password?: string;
    passwordResetToken?: string;
    passwordResetValidUntil?: Moment;
    roles: string[];
    salt?: string;
    settings: UserSettings;
    superAdmin: boolean;
    token: string;
}

Hierarchy (View Summary)

Properties

activated: boolean
appToken?: string
created?: Moment
email: string
id?: string
language: string
modified?: Moment
multiSessionAllowed: boolean
name: string
password?: string
passwordResetToken?: string
passwordResetValidUntil?: Moment
roles: string[]
salt?: string
settings: UserSettings
superAdmin: boolean
token: string