import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestFmDispatchItemCreateOrUpdate } from './requestFmDispatchItemCreateOrUpdate'; export interface RequestFmDispatchCreateOrUpdate { date: string; operationCenter: string; code?: string; vehicle: string; driverMobile?: string; items: RequestFmDispatchItemCreateOrUpdate[]; attachments?: RequestAttachmentCreateOrUpdate[]; comments?: string; import?: string; uniqueId?: string; }