/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { WebitelImApiGatewayV1HistoryMessage } from './webitelImApiGatewayV1HistoryMessage.zod'; import type { WebitelImApiGatewayV1HistoryMessageCursorResponse } from './webitelImApiGatewayV1HistoryMessageCursorResponse.zod'; /** * SearchMessageHistoryResponse contains * message history search results and pagination metadata. */ export interface WebitelImApiGatewayV1SearchMessageHistoryResponse { /** List of messages matching the search criteria. */ items?: WebitelImApiGatewayV1HistoryMessage[]; /** Cursor that represents position to get older messages (used without 'before' param). */ nextCursor?: WebitelImApiGatewayV1HistoryMessageCursorResponse; /** Cursor that represents position to get newest messages (used with 'before' param). */ prevCursor?: WebitelImApiGatewayV1HistoryMessageCursorResponse; }