/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializer for individual time series points in content details response. */ export type ContentDetailsTimeSeriesPoint = { /** * ISO8601 timestamp representing the aggregated period */ period: string; /** * Value for the requested metric during the period */ value: number; /** * Average value for the period (used for ratings) */ average?: number | null; };