import type { ProgramGroupSuggestionDetail } from './ProgramGroupSuggestionDetail'; /** * Response serializer for paginated program group suggestion list */ export type PaginatedProgramGroupSuggestion = { /** * Total number of results */ count: number; /** * URL for next page of results */ next_page: string | null; /** * URL for previous page of results */ previous_page: string | null; /** * List of program group suggestions */ results: Array; };