/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { NamedIdedDTO } from './NamedIdedDTO'; import type { TransitionDTO } from './TransitionDTO'; export type ProductCompleteDTO = { description?: string; id?: number; material?: boolean; name?: string; orderId?: number; productSteps?: Array; serialNumber?: string; transitions?: Array; }