/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * userId: "user_id" * } */ export interface CreateUserRequest { /** When true, disables the use of default/fallback ontology for the user's graph. */ disableDefaultOntology?: boolean; /** The email address of the user. */ email?: string; /** The first name of the user. */ firstName?: string; /** The last name of the user. */ lastName?: string; /** The metadata associated with the user. */ metadata?: Record; /** The unique identifier of the user. */ userId: string; }