/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { WebitelImApiGatewayV1Contact } from './webitelImApiGatewayV1Contact.zod'; /** * VariableEntry represents a single variable value * along with metadata about who and when it was set. */ export interface WebitelImApiGatewayV1VariableEntry { /** Timestamp when the variable was set (Unix time, milliseconds). */ setAt?: string; /** Contact who set the variable. */ setBy?: WebitelImApiGatewayV1Contact; /** * Arbitrary structured value of the variable. * Supports dynamic JSON-like content. */ value?: unknown; }