Interface EvaluationFormSingleSelectQuestionOption.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EvaluationFormSingleSelectQuestionOption.Builder,EvaluationFormSingleSelectQuestionOption>,SdkBuilder<EvaluationFormSingleSelectQuestionOption.Builder,EvaluationFormSingleSelectQuestionOption>,SdkPojo
- Enclosing class:
- EvaluationFormSingleSelectQuestionOption
public static interface EvaluationFormSingleSelectQuestionOption.Builder extends SdkPojo, CopyableBuilder<EvaluationFormSingleSelectQuestionOption.Builder,EvaluationFormSingleSelectQuestionOption>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EvaluationFormSingleSelectQuestionOption.BuilderautomaticFail(Boolean automaticFail)The flag to mark the option as automatic fail.EvaluationFormSingleSelectQuestionOption.BuilderrefId(String refId)The identifier of the answer option.EvaluationFormSingleSelectQuestionOption.Builderscore(Integer score)The score assigned to the answer option.EvaluationFormSingleSelectQuestionOption.Buildertext(String text)The title of the answer option.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
refId
EvaluationFormSingleSelectQuestionOption.Builder refId(String refId)
The identifier of the answer option. An identifier must be unique within the question.
- Parameters:
refId- The identifier of the answer option. An identifier must be unique within the question.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
text
EvaluationFormSingleSelectQuestionOption.Builder text(String text)
The title of the answer option.
- Parameters:
text- The title of the answer option.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
score
EvaluationFormSingleSelectQuestionOption.Builder score(Integer score)
The score assigned to the answer option.
- Parameters:
score- The score assigned to the answer option.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
automaticFail
EvaluationFormSingleSelectQuestionOption.Builder automaticFail(Boolean automaticFail)
The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.
- Parameters:
automaticFail- The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-