import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestProcessingInputItemCreateOrUpdate } from './requestProcessingInputItemCreateOrUpdate'; export interface RequestProcessingInputCreateOrUpdate { date: string; operationCenter: string; items: RequestProcessingInputItemCreateOrUpdate[]; attachments?: RequestAttachmentCreateOrUpdate[]; }