import type { PathwayGroupSuggestionDetail } from './PathwayGroupSuggestionDetail'; /** * Response serializer for paginated pathway group suggestion list */ export type PaginatedPathwayGroupSuggestion = { /** * 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 pathway group suggestions */ results: Array; };