Default Input Options
Input Options for questions
DEFAULT_INPUT_OPTIONS = {
"dropdown": {
"choices": [],
"validations": {},
"placeholder": "",
"response_type": "str"
},
"shorttext": {
"validations": {},
"placeholder": "",
"response_type": "str"
},
"longtext": {
"validations": {},
"placeholder": "",
"response_type": "str"
},
"checkbox": {
"choices": [],
"validations": {},
"response_type": "list"
},
"radio": {
"choices": ["Yes", "No"],
"validations": {},
"response_type": "str"
},
"number": {
"validations": {},
"placeholder": "",
"response_type": "int"
}
}
Last updated