AWSConnectEvaluationAnswerData
Objective-C
@interface AWSConnectEvaluationAnswerData
Swift
class AWSConnectEvaluationAnswerData
Information about answer data for a contact evaluation. Answer data must be either string, numeric, or not applicable.
-
The flag to mark the question as not applicable.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable notApplicable;
Swift
var notApplicable: NSNumber? { get set }
-
The numeric value for an answer in a contact evaluation.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable numericValue;
Swift
var numericValue: NSNumber? { get set }
-
The string value for an answer in a contact evaluation.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable stringValue;
Swift
var stringValue: String? { get set }