answerMap property
A map of answer-value -> step-id
linking the possible values of the answer to step.
If a specific value is chosen, the survey jumps to the targeted next step.
E.g. :
answerMap: {
3: instructionStepD.identifier,
2: instructionStepC.identifier,
1: instructionStepB.identifier,
0: instructionStepA.identifier
}
Implementation
Map<int, String> answerMap;