We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10086d1 commit 5050148Copy full SHA for 5050148
src/main/java/com/textkernel/tx/models/api/parsing/FlexRequestDataType.java
@@ -4,9 +4,14 @@
4
* Possible data types for FlexRequests
5
*/
6
public enum FlexRequestDataType {
7
+ /** Text/string response expected */
8
Text,
9
+ /** Numeric response expected */
10
Numeric,
11
+ /** Boolean response expected */
12
Bool,
13
+ /** List of text responses expected */
14
List,
15
+ /** Text response should be from a provided list of options. See {@link FlexRequest#EnumerationValues} */
16
Enumeration
17
}
0 commit comments