Interface MessageInteractive

interface MessageInteractive {
    action: Action;
    body: Body;
    button_reply?: { id: string; title: string };
    type: ButtonsType;
}

Properties

action: Action
body: Body
button_reply?: { id: string; title: string }