import type { ContentDetailsContentInfo } from './ContentDetailsContentInfo'; import type { ContentDetailsLearner } from './ContentDetailsLearner'; import type { ContentDetailsPagination } from './ContentDetailsPagination'; import type { ContentDetailsSummary } from './ContentDetailsSummary'; /** * Serializer for the content details API response. */ export type ContentDetailsResponse = { content_info: ContentDetailsContentInfo; summary: ContentDetailsSummary; pagination: ContentDetailsPagination; learners: Array; };