/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ export type SearchDeviceParams = { /** * ----- Select Options ------------------------- * * default: 16 */ size?: number; /** * default: 1 */ page?: number; /** * attributes list */ fields?: string[]; /** * e.g.: "updated_at" - ASC; "!updated_at" - DESC; */ sort?: string[]; /** * ----- Search Basic Filters --------------------------- * * selection: by unique identifier */ ids?: string[]; /** * term-of-search: lookup[name,account,hotdesk,brand,model,mac,ip] */ q?: string; /** * case-ignore substring match: ILIKE '*' - any; '?' - one */ name?: string; /** * [M]andatory[A]ccess[C]ontrol: with access mode (action) granted! */ access?: string; /** * ----- Device-Specific Filters ---------------- * * substring like '%name%' */ account?: string; /** * filter: has hotdesk (=pattern); is hotdesk (=*) */ hotdesk?: string; /** * Object ID */ 'user.id'?: string; /** * Display Name */ 'user.name'?: string; /** * filter: by MAC address */ mac?: string; /** * filter: by IP address */ ip?: string; };