import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestReconciliationItemCreateOrUpdate } from './requestReconciliationItemCreateOrUpdate'; export interface RequestReconciliationCreateOrUpdate { date: string; operationCenter: string; items: RequestReconciliationItemCreateOrUpdate[]; attachments?: RequestAttachmentCreateOrUpdate[]; comments?: string; }