/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ export type ListArticlesArticlesParams = { /** * Page number of result dataset records. offset = (page*size) */ page?: number; /** * Size count of records on result page. limit = (size++) */ size?: number; /** * Sort the result according to fields. */ sort?: string[]; /** * Fields to be retrieved as a result. */ fields?: string[]; /** * Search term: location name; * `?` - matches any one character * `*` - matches 0 or more characters */ q?: string; /** * Record(s) with unique ID only. */ articleId?: string; /** * Active Article only. */ state?: boolean; /** * Tags associated with the article. */ tags?: string[]; };