import { ProductionStates } from '../../types/production-states'; import { AttributeEventModel } from './attribute-event-model'; export interface ProductEventModel { id: number; taxFlag: number; shopProductId: number; productModel: string; ean: string; name: string; quantity: number; price: number; totalPrice: number; tax: number; shippingTime: string; weight: number; productionBarcodes: string[]; productionDocketDate: Date; productionComment: string; productionStates: { date: Date; barcode: string; state: ProductionStates; }[]; attributes: AttributeEventModel[]; }