/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { Prompt } from './Prompt'; import type { PromptFacet } from './PromptFacet'; /** * Response serializer for PromptSearchView */ export type PromptSearchResponse = { /** * List of prompts matching the search criteria */ results: Array; /** * Total number of prompts 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 */ num_pages: number; /** * Facet information for filtering */ facets?: Record; };