/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { WebitelImApiGatewayV1Documents } from './webitelImApiGatewayV1Documents'; import type { WebitelImApiGatewayV1Images } from './webitelImApiGatewayV1Images'; import type { WebitelImApiGatewayV1KeyboardListReply } from './webitelImApiGatewayV1KeyboardListReply'; import type { WebitelImApiGatewayV1KeyboardMarkup } from './webitelImApiGatewayV1KeyboardMarkup'; /** * Interactive represents a rich message with UI elements. */ export interface WebitelImApiGatewayV1Interactive { /** Document attachments header. */ documents?: WebitelImApiGatewayV1Documents; /** Images attachment header. */ images?: WebitelImApiGatewayV1Images; /** List reply with main list button text and sections with buttons. */ listReply?: WebitelImApiGatewayV1KeyboardListReply; /** Markup matrix with buttons. */ markup?: WebitelImApiGatewayV1KeyboardMarkup; /** Force to block user keyboard. */ singleUse?: boolean; }