import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestProcessingOutputItemCreateOrUpdate } from './requestProcessingOutputItemCreateOrUpdate'; export interface RequestProcessingOutputCreateOrUpdate { date: string; operationCenter: string; processingInput: string; items: RequestProcessingOutputItemCreateOrUpdate[]; attachments?: RequestAttachmentCreateOrUpdate[]; }