/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { TopicsOverviewMetric } from './TopicsOverviewMetric'; /** * Dashboard KPI overview for topics. */ export type TopicsOverview = { /** * Topic metrics including all-time, monthly counts and percentage change */ topics: TopicsOverviewMetric; /** * Session metrics including all-time, monthly counts and percentage change */ sessions: TopicsOverviewMetric; /** * Conversation metrics including all-time, monthly counts and percentage change */ conversations: TopicsOverviewMetric; /** * Message metrics including all-time, monthly counts and percentage change */ messages: TopicsOverviewMetric; };