interface MessageButtonsOptions {
    buttons?: MessageButtonsTypes[];
    footer?: string;
    title?: string;
    useInteractiveMesssage?: boolean;
    useTemplateButtons?: boolean;
}

Hierarchy (view full)

Properties

buttons?: MessageButtonsTypes[]

List of buttons, with at least 1 option and a maximum of 3

footer?: string

Footer text for buttons

title?: string

Title for buttons, only for text message

useInteractiveMesssage?: boolean

Set to use interactive message instead of reply buttons. @default: undefined - auto detect

useTemplateButtons?: boolean

Set to use template buttons instead of reply buttons. @default: undefined - auto detect

Deprecated