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