/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { WebitelImApiGatewayV1Contact } from './webitelImApiGatewayV1Contact.zod'; /** * SearchList represents a paginated collection of Contact entities. */ export interface WebitelImApiGatewayV1ContactList { /** List of contacts found. */ items?: WebitelImApiGatewayV1Contact[]; /** Indicates if there are more pages available. */ next?: boolean; /** Current page number. */ page?: number; /** Number of items returned in this batch. */ size?: number; }