Step
public enum Step : Sendable
Jumio.Scan.Step are steps that occur during scanning
-
If a scan part needs to prepare or preload data before it starts, this can step is triggered. As this could take a bit a loading indicator should be displayed
Declaration
Swift
case prepare -
Indicates that the scanning has been started. Loading indicators that have been displayed in
.preparecan be dismissed hereDeclaration
Swift
case started -
The started part needs a
Jumio.Scan.Viewattached. SeeJumio.Scan.Viewfor more informationDeclaration
Swift
case scanView -
The started part needs a
Jumio.DigitalIdentity.Viewattached. SeeJumio.DigitalIdentity.Viewfor more informationDeclaration
Swift
case digitalIdentityView -
The started part will switch to a third party’s application to continue verification. As this might take some time, showing a loading indicator is recommended.
Declaration
Swift
case thirdPartyVerification -
The started part needs an
URLto a file. SeeJumio.FileAttacherDeclaration
Swift
case attachFile -
The image has been taken and is uploaded to the Jumio server for processing
Declaration
Swift
case imageTaken -
The image is being processed on the servers
Declaration
Swift
case processing -
The image has been accepted and the user can review it to make sure the right image has been captured
Declaration
Swift
case confirmationView -
The image has been rejected - the image needs to be scanned again
Declaration
Swift
case rejectView -
There was a retry-able issue during the scanning. The
Jumio.Retry.Reasonprovides a code and a message on what has happenedDeclaration
Swift
case retry -
The scan part has been captured successfully and the part can be finished
Declaration
Swift
case canFinish -
An additional, optional scan part can be added.
Declaration
Swift
case addonScanPart -
Scan the next credential part of the multiside scan part.
Declaration
Swift
case nextPart
View on GitHub