PersonalCustomerEnrollResponseData
public struct PersonalCustomerEnrollResponseData : Codable
Child structure of CustomerEnrollDataResponse
.
-
This is a unique number that will be associated with the customer when enrolled or when performing future verifications
Declaration
Swift
public var uniqueNumber: String?
-
Name of the customer
Declaration
Swift
public var name: String?
-
Email address of the customer. Optional for any service
Declaration
Swift
public var email: String?
-
Date of birth of the customer. Date will be formatted as dd/mm/yyyy format if parsed correctly after extraction. (DD/MM/YYYY)
Declaration
Swift
public var dob: String?
-
Gender of the customer.
Valid values are M and F
Declaration
Swift
public var gender: String?
-
Address of the customer
Declaration
Swift
public var address: String?
-
Address Line1 of the customer
Declaration
Swift
public var addressLine1: String?
-
Address Line2 of the customer
Declaration
Swift
public var addressLine2: String?
-
Address Line3 of the customer
Declaration
Swift
public var addressLine3: String?
-
City address of the customer
Declaration
Swift
public var city: String?
-
Country associated with the Customer
Declaration
Swift
public var country: String?
-
2 digit state code from the address of the customer
Declaration
Swift
public var state: String?
-
Postal Code from the address of the customer
Declaration
Swift
public var postalCode: String?
-
This field is extracted from: The barcode or MRZ (if present), or the front or back of the ID.
Declaration
Swift
public var lastName2: String?
-
First name extracted from either barcode, MRZ, or front of the ID when MRZ / barcode are not present
Declaration
Swift
public var firstName: String?
-
Middle name extracted from either barcode, MRZ, or front of the ID when MRZ / barcode are not present
Declaration
Swift
public var middleName: String?
-
This field is extracted from: The barcode or MRZ (if present), or the front or back of the ID.
Declaration
Swift
public var lastName: String?
-
Non English first name, extracted from the front or back of the ID.
Declaration
Swift
public var firstNameNonEng: String?
-
Non English last name, extracted from the front or back of the ID.
Declaration
Swift
public var lastNameNonEng: String?
-
Non English middle name, extracted from the front or back of the ID.
Declaration
Swift
public var middleNameNonEng: String?
-
Non English address, extracted from the front or back of the ID.
Declaration
Swift
public var addressNonEng: String?
-
Non English address line 1, extracted from the front or back of the ID.
Declaration
Swift
public var addressLine1NonEng: String?
-
Non English address line 2, extracted from the front or back of the ID.
Declaration
Swift
public var addressLine2NonEng: String?
-
This is the Last name2 in which the identity document was issued. Extracted from the document.
Declaration
Swift
public var lastName2_doc: String?
-
This is the First Name in which the identity document was issued. Extracted from the document.
Declaration
Swift
public var firstName_doc: String?
-
This is the Middle name in which the identity document was issued. Extracted from the document.
Declaration
Swift
public var middleName_doc: String?
-
This is the Last name in which the identity document was issued. Extracted from the document.
Declaration
Swift
public var lastName_doc: String?
-
This is the full name in which the identity document was issued. Extracted from the document.
Declaration
Swift
public var name_doc: String?
-
Date of Birth extracted from front of the ID.
Declaration
Swift
public var dob_doc: String?
-
eyeColor extracted from barcode of the ID
Declaration
Swift
public var eyeColor: String?
-
hairColor extracted from barcode of the ID.
Declaration
Swift
public var hairColor: String?
-
height extracted from barcode of the ID.
Declaration
Swift
public var height: String?
-
weight extracted from barcode of the ID.
Declaration
Swift
public var weight: String?
-
parish extracted from barcode of the ID.
Declaration
Swift
public var parish: String?
-
Selfie image of the customer. This should contain base64 data of customer photo.
Declaration
Swift
public var selfieImage: String?