interface RunUserCreateInfo {
    active: boolean;
    company?: string;
    email: string;
    language?: string;
    name: string;
    newsletter?: boolean;
    options?: UserOptions;
    password: string;
    phone?: string;
    timezone: string;
}

Hierarchy (view full)

Properties

active: boolean
company?: string
email: string
language?: string
name: string
newsletter?: boolean
options?: UserOptions
password: string
phone?: string
timezone: string