/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ export type SearchLDAProcessParams = { /** * ----- Select Options ------------------------- * * default: 1 */ page?: number; /** * default: 16 */ size?: number; /** * attributes list */ fields?: string[]; /** * e.g.: "updated_at" - ASC; "!updated_at" - DESC; */ sort?: string[]; /** * ----- Search Basic Filters --------------------------- * OPTIONAL. Search process by unique .id */ id?: string[]; /** * OPTIONAL. Filter(s) SET */ q?: string; template?: string; objclass?: string[]; /** * WITH .errs */ failed?: boolean; /** * created|updated */ enabled?: boolean; /** * deleted */ disabled?: boolean; };