# Question
Question allows your users to customize their projects. A question must have a direction and choices. Gotouch prompts user to make a choice for every question in the selected Project Structure.
direction
: Direction is displayed on the screen for the question. It is a mandatory field.
canSkip
: This field allows skipping question. If there is one choice, question will be displayed as yes/no question.
If there are more than one choice, it will be displayed as None of above question. It is optional field.
canSelectMultiple
: This field allows users to make more than one choice. Instead of asking many yes/no questions, choices can be combined
in one question. Question will be displayed as multiple select question. It is optional field.
choices
: Choices filed is a list of choices belonging to the question. It is mandatory field. See choice for more information.
# Yes/No question
If a question has only one choice and canSkip
is true, it is evaluated as Yes/No question
# Multiple choice question
If a question has more than one choice it is evaluated as Multiple choice question
# None of above question
If a question has more than one choice and canSkip
is true, None of above
option will be also added
as a choice.
# Multiple Select Question
If a question's canSelectMultiple
is set to true, user can select more than one choice.