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