I already went through the bot framework documentation and the given examples. Even though, FormFlow accepts dynamic options (answers), I couldn't find a way to dynamically populate both fields (questions) and options (answers).
This is what I'm trying to do. I have class called Questionnaire which includes a list of Questions (another class). Question class includes a header (string) and a list of possible answers. The FormFlow should be populated based on that. However, Questions objects are dynamically populated based on user's first message. Then i make an api call and populate my Questionnaire class and the list of questions inside it. Now, i want to use this upated Questionnaire instance to populate the FormFlow using question header as the field and it's answer list as the options.
Is it even possible to do with the current bot framework sdk? Would appreciate a lot if someone can provide an example. Thanks a lot