/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializer for individual topic overview metrics. */ export type TopicsOverviewMetric = { /** * Total count since the beginning of time */ all_time_total: number; /** * Count for current month */ this_month: number; /** * Count for previous month */ last_month: number; /** * Percentage change from last month to this month */ percentage_change: number; };