/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { ContentDetailsTimeSeriesPoint } from './ContentDetailsTimeSeriesPoint'; /** * Serializer describing the time series block. */ export type ContentDetailsTimeSeries = { /** * Metric represented in the time series */ metric: string; /** * Aggregation interval (e.g., month) */ interval: string; data: Array; };