import type * as ElevenLabs from "../index"; /** * OCSF User object. * * Spec: https://schema.ocsf.io/1.6.0/objects/user */ export interface UserModel { /** Username */ name?: string; /** Unique user identifier */ uid?: string; /** Account type identifier */ typeId?: ElevenLabs.UserTypeId; /** Account type description */ type?: string; /** User email address */ emailAddr?: string; /** Full name of the user */ fullName?: string; /** User's domain */ domain?: string; }