/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Response serializer for RecommendedCoursesView */ export type RecommendedCoursesResponse = { /** * List of content items matching the search criteria */ results: Array>; /** * Total number of items matching the search criteria */ count: number; /** * URL for the next page of results */ next: string | null; /** * URL for the previous page of results */ previous: string | null; /** * Current page number */ current_page: number; /** * Total number of pages */ total_pages: number; /** * Facet information for filtering */ facets?: Record; };