/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { JobForOrder } from './JobForOrder'; import type { ListEntryDTOCartInstance } from './ListEntryDTOCartInstance'; import type { NamedModel } from './NamedModel'; import type { NextEquipmentForJob } from './NextEquipmentForJob'; import type { ProductFlowItemDTO } from './ProductFlowItemDTO'; import type { QualityValueListDTO } from './QualityValueListDTO'; export type ProductionOrderDetailDTO = { batchTracking?: boolean; cartInstances?: Array; currentEquipment?: NamedModel; description?: string; groupName?: string; jobs?: Array; nextEquipments?: Array; orderId?: number; orderName?: string; orderQuantity?: number; orderTagId?: string; parentOrderId?: number; parentOrderName?: string; product?: NamedModel; productDescription?: string; productFlowItems?: Array; progress?: number; qualityValues?: Array; serialNumber?: string; state?: string; }