AWSConnectEvaluationFormSingleSelectQuestionOption

Objective-C

@interface AWSConnectEvaluationFormSingleSelectQuestionOption

Swift

class AWSConnectEvaluationFormSingleSelectQuestionOption

Information about the automation configuration in single select questions.

Required parameters: [RefId, Text]

  • The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable automaticFail;

    Swift

    var automaticFail: NSNumber? { get set }
  • The identifier of the answer option. An identifier must be unique within the question.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable refId;

    Swift

    var refId: String? { get set }
  • The score assigned to the answer option.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable score;

    Swift

    var score: NSNumber? { get set }
  • The title of the answer option.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable text;

    Swift

    var text: String? { get set }