/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ export type ListCloseReasonsParams = { /** * Page number of result dataset records. offset = (page*size) */ page?: number; /** * Size count of records on result page. limit = (size++) */ size?: number; /** * Fields to be retrieved as a result. */ fields?: string[]; /** * Sort the result according to fields. */ sort?: string; id?: string[]; /** * Search query string for filtering by name. Supports: * - Wildcards (*) for substring matching * - Placeholder (?) for single character substitution * - Exact match for full names */ q?: string; };