Type alias WhatsAppTemplateComponent

WhatsAppTemplateComponent: {
    example?: Record<string, unknown>;
    format?: WhatsAppTemplateHeaderFormat;
    text?: string;
    type: "HEADER";
} | {
    example?: Record<string, unknown>;
    text: string;
    type: "BODY";
} | {
    text: string;
    type: "FOOTER";
} | {
    buttons: WhatsAppTemplateButton[];
    type: "BUTTONS";
}

Generated using TypeDoc