/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ export type SearchLDAPTemplateParams = { /** * ----- 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 templates by .id */ id?: string[]; /** * OPTIONAL. Filter(s) SET */ q?: string; name?: string; baseDn?: string; objclass?: string; enabled?: boolean; disabled?: boolean; };