/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { WebitelImApiGatewayV1Peer } from './webitelImApiGatewayV1Peer.zod'; /** * Response sent back to the client after a button click. */ export interface WebitelImApiGatewayV1InteractiveCallbackResponse { /** Button identifier. */ buttonCode?: string; /** Optional callback payload. */ callbackData?: string; /** Original message ID. */ inReplyTo?: string; /** Unix time in milliseconds when callback button was clicked. */ reactedAt?: string; /** User who clicked the button. */ reactedBy?: WebitelImApiGatewayV1Peer; }