/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ export type SearchCases2Params = { /** * Page number for pagination. */ page?: number; /** * Number of results per page. */ size?: number; /** * General query string. */ q?: string; /** * List of specific case IDs to retrieve. */ ids?: string[]; /** * Sorting criteria (e.g., field:asc). */ sort?: string; /** * List of fields to include in the response. */ fields?: string[]; /** * Key-value pairs for additional filtering. */ filters?: string[]; /** * Specify which fields to apply 'q' to. */ qin?: string; /** * Updated filters with CEL syntax. */ filtersV1?: string; };