import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestDeliveryItemCreateOrUpdate } from './requestDeliveryItemCreateOrUpdate'; export interface RequestDeliveryCreateOrUpdate { date: string; operationCenter: string; code?: string; vehicle: string; customer: string; lmDispatch?: string; items: RequestDeliveryItemCreateOrUpdate[]; attachments?: RequestAttachmentCreateOrUpdate[]; comments?: string; unplanned?: boolean; }