Type alias ServerInteractiveMessage
ServerInteractiveMessage: {
interactive: {
button_reply: {
id: string;
title: string;
};
list_reply: never;
type: "button_reply";
} | {
button_reply: never;
list_reply: {
description: string;
id: string;
title: string;
};
type: "list_reply";
};
type: "interactive";
}
Type declaration
-
interactive: {
button_reply: {
id: string;
title: string;
};
list_reply: never;
type: "button_reply";
} | {
button_reply: never;
list_reply: {
description: string;
id: string;
title: string;
};
type: "list_reply";
}
-
type: "interactive"