Skip to main content

PassportScanHelper

public class PassportScanHelper extends NSObject

This is the helper class that provides Passport document scanning functionality.

  • All documents (Identity and Miscellaneous) must have the following baseline attributes.
Parameters
StringidIt represents the document's ID eg: driver license number.
StringcategoryCurrently, this SDK supports two categories for documents that can be registered, i.e., identity_document or misc_document.
StringtypeThis represents the type of document that the user will try to register, i.e., pin, dl, ppt, liveid, nationalid.
StringproofedByThis identifies the entity responsible for proofing the document. When you use BlockID SDK Scanners, this defaults to "blockid".
  • The identity documents must have the following baseline attributes.
Parameters
StringfirstNameFirst name of document holder.
StringlastNameLast name of document holder.
StringdobDate of birth {yyyyMMdd} of document holder.
StringdoeDate of expiry {yyyyMMdd} of document.
StringfaceBase64 string of document holder's face photo.
StringimageBase64 string of document image.

Constructor

public init(isDataRequiredOnFail: Bool = false, bidScannerView: BIDScannerView, ppResponseDelegate: PassportResponseDelegate, cutoutView: CGRect, expiryGracePeriod: Int)

  • Creates an object of PassportScanHelper. The scanner will throw an error if the document has already expired. If the document expires before gracePeriod, the scanner will complete the scan and return an advisory error.

NOTE: It is the application's responsibility to decide if the scanned Passport document should be registered or not.

Parameters
isDataRequiredOnFailBoolIndicates if the scanner must return the passport document data. The default value is false.
bidScannerViewBIDScannerViewAn object of BIDScannerView.
nidScanResponseDelegatePassportResponseDelegateThe block to execute after the Passport document scanning is completed.
cutoutViewCGRectAn view frame if an additional overlay is used in the app.
expiryDateGracePeriodintNumber of days to allow as grace period ahead of Passport document expiry.

Method Summary

Parameters
BoolisRunning()Indicates if the Passport document scanner is running or not.
voidstartPassportScanning()Starts the Passport document scanner.
voidstartRFIDScanning(defaultTimeout: TimeInterval = 15)Starts Passport document's RFID scanning with custom timeout. The default timeout is 15 seconds, if not set.
voidstopRFIDScanning()Stops Passport document's RFID scanning.
voidstopPassportScanning()Stops the Passport document scanner.

Method Detail

isRunning

public func isRunning() -> Bool

  • Indicates if the Passport document scanner is running or not.

startPassportScanning

public func startPassportScanning()

  • Starts the Passport document scanner.

startRFIDScanning

public func startRFIDScanning(defaultTimeout: TimeInterval = 15)

  • Starts Passport document's RFID scanning with a default timeout of 15 seconds.
Parameters
defaultTimeoutTimeIntervalA custom timeout value for RFID scan.

stopRFIDScanning

public func stopRFIDScanning()

  • Stops Passport document's RFID scanning.

stopScanning

public func stopPassportScanning()

  • Stops the Passport document scanner.

Protocol Summary

Parameters
PassportResponseDelegateCallback for the event when Passport document scanning is completed.

PassportResponseDelegate

public protocol PassportResponseDelegate: AnyObject

  • Callback for the event when Passport document scanning is completed.

Method Details

func passportScanCompleted(withPassport docDic: [String : Any]?, error: ErrorResponse?, signatureToken signToken: String?, isWithRFID: Bool?)

  • A callback method that is triggered after the Passport document scanning is completed.
Parameters
withPassportDictionaryReturns the Passport document data after the scanning is completed.
errorErrorResponseIn case of error, an object of ErrorResponse is returned.
signatureTokenStringA token that carries information about a scanned Passport. This is used to verify if the Passport document is modified or not before storing it on the BlockID blockchain platform.
isWithRFIDBoolA flag to indicate if the Passport document data contains RFID data or not.

func readyForDetection()

  • A callback method to indicate that the scanner is ready to detect the Passport document.