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.|| || |