nest-whatsapp - v0.0.1
    Preparing search index...

    Interface WhatsAppOutboundInteractive

    interface WhatsAppOutboundInteractive {
        action:
            | { buttons: WhatsAppOutboundButton[] }
            | { button: string; sections: WhatsAppOutboundSection[] };
        body: { text: string };
        footer?: { text: string };
        header?: { text: string; type: "text" };
        type: "button" | "list";
    }
    Index

    Properties

    action:
        | { buttons: WhatsAppOutboundButton[] }
        | { button: string; sections: WhatsAppOutboundSection[] }
    body: { text: string }
    footer?: { text: string }
    header?: { text: string; type: "text" }
    type: "button" | "list"