interface RunUserInfo {
    active: boolean;
    company?: string;
    created_at: Date;
    email: string;
    id: string;
    language?: string;
    name: string;
    newsletter?: boolean;
    options?: UserOptions;
    otp?: {
        authenticator: boolean;
        email: boolean;
        sms: boolean;
    };
    password: string;
    phone?: string;
    timezone: string;
}

Hierarchy (view full)

Properties

active: boolean
company?: string
created_at: Date
email: string
id: string
language?: string
name: string
newsletter?: boolean
options?: UserOptions
otp?: {
    authenticator: boolean;
    email: boolean;
    sms: boolean;
}

Type declaration

  • authenticator: boolean
  • email: boolean
  • sms: boolean
password: string
phone?: string
timezone: string