MBVizResult
Objective-C
@interface MBVizResult : NSObject
Swift
class MBVizResult : NSObject
MBVizResult contains data extracted from the Visual Inspection Zone.
-
The first name of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull firstName;
Swift
var firstName: String { get }
-
The last name of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull lastName;
Swift
var lastName: String { get }
-
The full name of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull fullName;
Swift
var fullName: String { get }
-
The father’s name of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull fathersName;
Swift
var fathersName: String { get }
-
The mother’s name of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull mothersName;
Swift
var mothersName: String { get }
-
The additional name information of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull additionalNameInformation;
Swift
var additionalNameInformation: String { get }
-
The localized name of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull localizedName;
Swift
var localizedName: String { get }
-
The address of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull address;
Swift
var address: String { get }
-
The additional address information of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull additionalAddressInformation;
Swift
var additionalAddressInformation: String { get }
-
The one more additional address information of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *additionalOptionalAddressInformation;
Swift
var additionalOptionalAddressInformation: String? { get }
-
The place of birth of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull placeOfBirth;
Swift
var placeOfBirth: String { get }
-
The nationality of the documet owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull nationality;
Swift
var nationality: String { get }
-
The race of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull race;
Swift
var race: String { get }
-
The religion of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull religion;
Swift
var religion: String { get }
-
The profession of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull profession;
Swift
var profession: String { get }
-
The marital status of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull maritalStatus;
Swift
var maritalStatus: String { get }
-
The residential stauts of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull residentialStatus;
Swift
var residentialStatus: String { get }
-
The employer of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull employer;
Swift
var employer: String { get }
-
The sex of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull sex;
Swift
var sex: String { get }
-
The date of birth of the document owner.
Declaration
Objective-C
@property (nonatomic, readonly) MBDateResult *_Nonnull dateOfBirth;
Swift
var dateOfBirth: MBDateResult { get }
-
The date of issue of the document.
Declaration
Objective-C
@property (nonatomic, readonly) MBDateResult *_Nonnull dateOfIssue;
Swift
var dateOfIssue: MBDateResult { get }
-
The date of expiry of the document.
Declaration
Objective-C
@property (nonatomic, readonly) MBDateResult *_Nonnull dateOfExpiry;
Swift
var dateOfExpiry: MBDateResult { get }
-
The document number.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull documentNumber;
Swift
var documentNumber: String { get }
-
The personal identification number.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull personalIdNumber;
Swift
var personalIdNumber: String { get }
-
The additional number of the document.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull documentAdditionalNumber;
Swift
var documentAdditionalNumber: String { get }
-
The one more additional number of the document.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *documentOptionalAdditionalNumber;
Swift
var documentOptionalAdditionalNumber: String? { get }
-
TThe additional personal identification number.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull additionalPersonalIdNumber;
Swift
var additionalPersonalIdNumber: String { get }
-
The issuing authority of the document.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull issuingAuthority;
Swift
var issuingAuthority: String { get }
-
The driver license detailed info.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) MBDriverLicenseDetailedInfo *driverLicenseDetailedInfo;
Swift
var driverLicenseDetailedInfo: MBDriverLicenseDetailedInfo? { get }
-
Flag that indicates if barcode result is empty
Declaration
Objective-C
@property (nonatomic, readonly) BOOL empty;
Swift
var empty: Bool { get }