import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestDumpInventoryItemCreateOrUpdate } from './requestDumpInventoryItemCreateOrUpdate'; export interface RequestDumpInventoryCreateOrUpdate { date: string; operationCenter: string; dumpingCenter?: string; items: RequestDumpInventoryItemCreateOrUpdate[]; attachments?: RequestAttachmentCreateOrUpdate[]; comments?: string; }