/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { Equipment } from './Equipment'; import type { IdedModel } from './IdedModel'; import type { NamedModel } from './NamedModel'; import type { ProcessTarget } from './ProcessTarget'; export type User = { abbreviation?: string; activeProcessTargets?: Array; admin?: boolean; archivedTime?: string; assignedEquipments?: Array; autoId?: string; changePassword?: boolean; deletionTime?: string; email?: string; extId?: string; fixedEquipment?: Equipment; foreName?: string; id?: number; image?: IdedModel; kpi?: boolean; login?: string; masterdata?: boolean; name?: string; operator?: boolean; phone?: string; phoneExtension?: number; planner?: boolean; prefix?: string; preparer?: boolean; processTargets?: Array; roles?: Array; shifts?: Array; showable?: boolean; smartTagType?: string; tagId?: string; tracking?: boolean; uiFriendlyName?: string; }