import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestLmDispatchItemCreateOrUpdate } from './requestLmDispatchItemCreateOrUpdate'; export interface RequestLmDispatchCreateOrUpdate { date: string; operationCenter: string; code?: string; vehicle: string; items: RequestLmDispatchItemCreateOrUpdate[]; attachments?: RequestAttachmentCreateOrUpdate[]; comments?: string; }