FieldTypesEnum
Enum for field types. Each field type has a flag to indicate if it is selectable and queryable. Selectable - If the field type can have a list of options to select from. Queryable - If the field type can be used in a dynamic options fetching (meaning, converted to SELECT_QUERY). Note that this does not work well for list fields.
Was this section helpful?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
enum FieldTypesEnum {
STRING
LABEL
LIST
BOOL
SECRET
SELECT_QUERY
SELECT
DATE
NUMBER
FLOAT
TEXTAREA
AUTOCOMPLETE_ONLY_TEXTAREA
INLINE_AUTOCOMPLETE
HTML_TEXTAREA
MAPPING
UNIQUE_MAPPING
SELECT_MAPPING
SELECT_MULTI
MAPPING_QUERY
HIDDEN
SWITCH_TOGGLE
JSON
}Was this section helpful?