/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * {} */ export interface UpdateUserRequest { /** 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 to update */ metadata?: Record; }