import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestMarketIntelligenceItemCreateOrUpdate } from './requestMarketIntelligenceItemCreateOrUpdate'; export interface RequestMarketIntelligenceCreateOrUpdate { date: string; time: string; operationCenter: string; market: string; items: RequestMarketIntelligenceItemCreateOrUpdate[]; attachments?: RequestAttachmentCreateOrUpdate[]; comments?: string; }