Hello everyone,
I am working on a chatbot where I receive three suggestion questions as variables in the following format:
Topic.var1.question1
(string)Topic.var2.question2
(string)Topic.var3.question3
(string)
I want to create an interactive user experience where the user can click on any of these dynamically generated questions, and the selected question is sent as a message. This is similar to how we collect multiple choice input from the user, but the multiple choice options are hardcoded.
Is there any way to achieve this dynamically, considering that the questions are stored in variables and might change?
Any guidance or suggestions would be greatly appreciated.
Thank you!