nope/modules/xetics-lean-connector/generated/models/ProductionOrderDetailDTO.ts

33 lines
1.1 KiB
TypeScript
Raw Normal View History

2021-08-26 18:47:05 +00:00
/* 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;
}