botbuilder-formflow
Version:
Form flow with subdialogs
32 lines • 477 B
JavaScript
module.exports = [
{
"user": "hi"
},
{
"bot": "Please enter a boolean value"
},
{ "user" : "NotAValue"},
{
"bot": "I don't understand that. Could you say 'yes' or 'no'?"
},
{
"user" : "yes",
},
{
"bot": "You selected yes"
},
{
"bot": "{\"value\":true}",
},
{ "user" : "hi"},
{
"bot": "Please enter a boolean value"
},
{"user" : "no"},
{
"bot": "You selected no"
},
{
"bot" : "{\"value\":false}"
}
];