IdentityUIResult

public enum IdentityUIResult

The result of calling `IdentityUI.presentIdentityProcess(from viewController:)

  • The process conpleted successfully and you have a valid User object

    Declaration

    Swift

    case completed(User)
  • The process was cancelled by the user

    Declaration

    Swift

    case canceled
  • The process was skipped by the user

    Declaration

    Swift

    case skipped
  • There was an error during the UI process before there was a UI to display

    Declaration

    Swift

    case failed(Error)