/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ export type ListServicesParams = { /** * Page number for pagination */ page?: number; /** * Number of records per page */ size?: number; /** * Sorting options by fields */ sort?: string; /** * List of IDs to filter the services */ 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; /** * Filter services by catalog ID (required) */ rootId?: string; /** * Filter by state (true for active, false for inactive) */ state?: boolean; /** * Fields to be retrieved as a result. */ fields?: string[]; };