import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestLmInwardItemCreateOrUpdate } from './requestLmInwardItemCreateOrUpdate'; export interface RequestLmInwardCreateOrUpdate { date: string; operationCenter: string; code?: string; vehicle: string; lmDispatch: string; items: RequestLmInwardItemCreateOrUpdate[]; attachments?: RequestAttachmentCreateOrUpdate[]; comments?: string; }