UNPKG

@bitblit/ratchet-misc

Version:

Ratchet miscellaneous tooling that requires smallish dependant libraries

20 lines (19 loc) 871 B
import type { ComponentItems } from './ComponentItems.js'; import type { VariablesItems } from './VariablesItems.js'; export interface WhatsappCampTemplate { name?: string; category?: string; language?: string; containsButton?: boolean; displayHeader?: boolean; headerType?: string; components?: Array<ComponentItems>; headerVariables?: Array<VariablesItems>; bodyVariables?: Array<VariablesItems>; buttonType?: string; hideFooter?: boolean; } export declare function instanceOfWhatsappCampTemplate(value: object): boolean; export declare function WhatsappCampTemplateFromJSON(json: any): WhatsappCampTemplate; export declare function WhatsappCampTemplateFromJSONTyped(json: any, ignoreDiscriminator: boolean): WhatsappCampTemplate; export declare function WhatsappCampTemplateToJSON(value?: WhatsappCampTemplate | null): any;