nope/modules/xetics-lean-connector/generated/models/ProductionOrderDetailDTO.ts
2021-08-26 20:47:05 +02:00

33 lines
1.1 KiB
TypeScript

/* 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<ListEntryDTOCartInstance>;
currentEquipment?: NamedModel;
description?: string;
groupName?: string;
jobs?: Array<JobForOrder>;
nextEquipments?: Array<NextEquipmentForJob>;
orderId?: number;
orderName?: string;
orderQuantity?: number;
orderTagId?: string;
parentOrderId?: number;
parentOrderName?: string;
product?: NamedModel;
productDescription?: string;
productFlowItems?: Array<ProductFlowItemDTO>;
progress?: number;
qualityValues?: Array<QualityValueListDTO>;
serialNumber?: string;
state?: string;
}