/** * 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; };