SBSDKHealthInsuranceCardField
@interface SBSDKHealthInsuranceCardField : NSObject
EHIC field data.
-
Field type.
Declaration
Objective-C
@property (nonatomic) SBSDKHealthInsuranceCardFieldType type;
Swift
var type: SBSDKHealthInsuranceCardFieldType { get set }
-
Field string value.
Declaration
Objective-C
@property (nonatomic, strong) NSString *value;
Swift
var value: String! { get set }
-
OCR recognition confidence. Relevant only for fields whose values cannot be validated (like e.g. the person’s name).
Declaration
Objective-C
@property (nonatomic) double confidence;
Swift
var confidence: Double { get set }
-
String representation of the field in the form of “Field name: Field value”.
Declaration
Objective-C
- (NSString *)stringRepresentation;
Swift
func stringRepresentation() -> String!