/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { ContentItem } from './ContentItem'; import type { ContentPagination } from './ContentPagination'; import type { ContentSummary } from './ContentSummary'; /** * Serializer for the complete content API response. */ export type ContentResponse = { /** * The metric type (course, program, pathway, skill) */ metric: string; /** * Summary statistics for the metric */ summary: ContentSummary; /** * Pagination metadata */ pagination: ContentPagination; /** * List of content items */ results: Array; };