interface UserCreateInfo {
    active?: boolean;
    company?: string;
    email: string;
    language?: string;
    name: string;
    options?: UserOptions;
    password: string;
    phone?: string;
    tags?: TagsObj[];
    timezone: string;
}

Properties

active?: boolean
company?: string
email: string
language?: string
name: string
options?: UserOptions
password: string
phone?: string
tags?: TagsObj[]
timezone: string