Changes between Version 17 and Version 18 of dialogmanager


Ignore:
Timestamp:
02/01/23 15:32:19 (21 months ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • dialogmanager

    v17 v18  
    7474== AnswerType
    7575There are a number of AnswerTypes built in standard:
    76 BoolAnswer: this allows yes/no type answers.
    77 NumberAnswer: asks the user for a number. The valid range and step can be specified.
    78 SelectFromListAnswer: user can answer from a given list of answers.
    79 TextAnswer: User can give a free text answer.
     76||type||description||extra parameters||
     77||BoolAnswer||this allows yes/no type answers.|| ||
     78||NumberAnswer||asks the user for a number. The valid range and step can be specified.||min, max, stepsize: Double||
     79||SelectFromListAnswer||user can answer from a given list of answers.||options: List<String>||
     80||TextAnswer: User can give a free text answer.|| ||
    8081
     82All answer types require a field "parameter" containing the name of the parameter that will be filled with the user's answer.
    8183
    8284== UpdateFunction