/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ export type ListIMClientsParams = { /** * Page number of result dataset records. offset = (page*size) */ page?: number; /** * Size count of records on result page. limit = (size++) */ size?: number; /** * Search term: IMClient. * `?` - matches any one character * `*` - matches 0 or more characters * Search fields: {user,app} */ q?: string; /** * Sort the result according to fields. */ sort?: string[]; /** * Fields to be retrieved into result. */ fields?: string[]; /** * Link(s) with unique ID only. */ id?: string[]; };