import { ReportByAccountMetadataPayload, SectionByAccountGroupCOABalanceGroupedPayload } from '../../commonPayloadTypes/subAccountView/reportBySubAccountPayload'; import { ForecastPayload } from '../../entity/forecast/forecastPayload'; import { InsightSummaryPayload } from '../../entity/insights/insightSummaryPayload'; import { ZeniReportResponse } from '../../responsePayload'; export interface OpExReportPayload extends ReportByAccountMetadataPayload { expenses: SectionByAccountGroupCOABalanceGroupedPayload; insights: InsightSummaryPayload[]; forecast?: ForecastPayload; } export type OpExReportResponse = ZeniReportResponse;