/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ export type CatalogGetHistoryParams = { /** * Messages ONLY starting from the specified message ID */ 'offset.id'?: string; /** * Messages ONLY been sent before the specified epochtime(milli). */ 'offset.date'?: string; /** * Number of messages to return. */ limit?: number; /** * Search term: message.text */ q?: string; /** * Fields to return into result. */ fields?: string[]; /** * Contact unique **ID**entifier. * Contact **type**-specific string. */ 'peer.id'?: string; /** * Contact **type** provider. */ 'peer.type'?: string; /** * Contact display **name**. */ 'peer.name'?: string; /** * Includes the history of ONLY those dialogs * whose member channel(s) contain * a specified set of variables. */ groupString?: string; };