import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestFmInwardItemCreateOrUpdate } from './requestFmInwardItemCreateOrUpdate'; export interface RequestFmInwardCreateOrUpdate { date: string; time: string; operationCenter: string; code?: string; vehicle: string; fmDispatch: string; allowOtherOcInwards?: boolean; items: RequestFmInwardItemCreateOrUpdate[]; attachments?: RequestAttachmentCreateOrUpdate[]; comments?: string; vehicleNumber?: string; }