/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { WebitelChatPeer } from './webitelChatPeer.zod'; /** * Customer is external chat contact. */ export interface WebitelChatCustomer { /** * Customer unique **ID**entifier. * Account **type**-specific string. */ id?: string; /** Customer account **name**. */ name?: string; /** Customer account **type**. */ type?: string; /** [VIA] Text gateway associations. */ via?: WebitelChatPeer[]; }