/** * This file was auto-generated by Fern from our API Definition. */ import * as Vectara from "../index"; export interface User { /** The Vectara ID for the user. */ id?: string; /** The email address for the user. */ email?: string; /** The username for the user. */ username?: string; /** Indicates whether the user is enabled or disabled. */ enabled?: boolean; /** The description of the user. */ description?: string; /** When the user was created. */ createdAt?: Date; /** When a user property was last updated. */ updatedAt?: Date; /** The role names of the user. */ apiRoles?: Vectara.ApiRole[]; apiPolicy?: Vectara.ApiPolicy; }