ETASCOM CRM V3 - Documentation API
    Preparing search index...

    Interface User

    interface User {
        id: string;
        email: string;
        password?: string | null;
        country?: string | null;
        timezone?: string | null;
        name?: string | null;
        roleId: string;
        status: UserStatus;
        createdAt: Date;
        updatedAt: Date;
        lastSignInAt?: Date | null;
        emailVerifiedAt?: Date | null;
        isTrashed: boolean;
        avatar?: string | null;
        invitedByUserId?: string | null;
        isProtected: boolean;
        twoFactorEnabled?: boolean;
        twoFactorVerifiedAt?: Date | null;
        role: UserRole;
        sessions?: Session[];
        accounts?: Account[];
    }
    Index

    Properties

    id: string
    email: string
    password?: string | null
    country?: string | null
    timezone?: string | null
    name?: string | null
    roleId: string
    status: UserStatus
    createdAt: Date
    updatedAt: Date
    lastSignInAt?: Date | null
    emailVerifiedAt?: Date | null
    isTrashed: boolean
    avatar?: string | null
    invitedByUserId?: string | null
    isProtected: boolean
    twoFactorEnabled?: boolean
    twoFactorVerifiedAt?: Date | null
    role: UserRole
    sessions?: Session[]
    accounts?: Account[]