/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { Mentor } from './Mentor'; import type { MentorFacet } from './MentorFacet'; /** * Response serializer for MentorSearchView */ export type MentorSearchResponse = { /** * List of mentors matching the search criteria */ results: Array; /** * Total number of mentors 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; };