@botonic/plugin-flow-builder
Version:
Botonic plugin for **Hubtype Flow Builder**: run and bridge flow-driven logic from bots on the **current** line.
18 lines (17 loc) • 660 B
TypeScript
import { WhatsappHeaderType } from '@botonic/shared';
import { HtButton } from './button';
import { HtBaseNode, HtMediaFileLocale, HtTextLocale } from './common';
import { HtNodeWithContentType } from './node-types';
export interface HtWhatsappCTAUrlButtonNode extends HtBaseNode {
type: HtNodeWithContentType.WHATSAPP_CTA_URL_BUTTON;
content: {
text: HtTextLocale[];
header: HtTextLocale[];
header_type?: WhatsappHeaderType;
header_image?: HtMediaFileLocale[];
header_video?: HtMediaFileLocale[];
header_document?: HtMediaFileLocale[];
footer: HtTextLocale[];
button: HtButton;
};
}