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 .prepare can be dismissed here

    Declaration

    Swift

    case started
  • The started part needs a Jumio.Scan.View attached. See Jumio.Scan.View for more information

    Declaration

    Swift

    case scanView
  • The started part needs a Jumio.DigitalIdentity.View attached. See Jumio.DigitalIdentity.View for more information

    Declaration

    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 URL to a file. See Jumio.FileAttacher

    Declaration

    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.Reason provides a code and a message on what has happened

    Declaration

    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