AWSConnectEvaluationFormSection

Objective-C

@interface AWSConnectEvaluationFormSection

Swift

class AWSConnectEvaluationFormSection

Information about a section from an evaluation form. A section can contain sections and/or questions. Evaluation forms can only contain sections and subsections (two level nesting).

Required parameters: [Title, RefId, Items]

  • The instructions of the section.

    Declaration

    Objective-C

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

    Swift

    var instructions: String? { get set }
  • The items of the section.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSConnectEvaluationFormItem *> *_Nullable items;

    Swift

    var items: [AWSConnectEvaluationFormItem]? { get set }
  • The identifier of the section. An identifier must be unique within the evaluation form.

    Declaration

    Objective-C

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

    Swift

    var refId: String? { get set }
  • The title of the section.

    Declaration

    Objective-C

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

    Swift

    var title: String? { get set }
  • The scoring weight of the section.

    Declaration

    Objective-C

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

    Swift

    var weight: NSNumber? { get set }