PersonalCustomerIdentifyResponseData

public struct PersonalCustomerIdentifyResponseData : Codable

Child structure of CustomerIdentifyDataResponse.

Properties

  • 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?
  • dob

    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?
  • 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?
  • Phone Number of the customer

    Declaration

    Swift

    public var phone: String?
  • District address of the customer

    Declaration

    Swift

    public var district: String?
  • Enrolled FP image of the customer. This should contain base64 customer photo.

    Declaration

    Swift

    public var fingerprintUsedForVerification: String?
  • nrolled date of the customer. Date will be formatted as dd/mm/yyyy format if parsed correctly after extraction. (DD/MM/YYYY)

    Declaration

    Swift

    public var enrolledDate: String?
  • Enrolled face image of the customer. This should contain base64 customer photo.

    Declaration

    Swift

    public var enrolledFaceImage: String?
  • Identification Number of the customer.

    Declaration

    Swift

    public var idNumber: String?
  • Expiration data of the customer. Example: 31/12/2019

    Declaration

    Swift

    public var expDate: String?
  • Unique identifier that is system-generated when an enrollment has been successfully completed.

    Declaration

    Swift

    public var customerCode: String?
  • Selfie image of the customer. This should contain base64 data of customer photo.

    Declaration

    Swift

    public var selfieImage: String?