/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { WebitelImApiGatewayV1KeyboardButton } from './webitelImApiGatewayV1KeyboardButton.zod'; /** * Represents a row of buttons grouped under a specific logical section header. * Useful for creating categorized menus or structured interactive interfaces. */ export interface WebitelImApiGatewayV1KeyboardRowWithSection { /** * Collection of buttons within this section. * Minimum of 1 button is required to prevent empty sections. */ buttons?: WebitelImApiGatewayV1KeyboardButton[]; /** The header text for this section. Must be concise and descriptive. */ section?: string; }