MFAType

public enum MFAType : Codable

Multi-factor authentication methods

  • Ask user to re-authenticate by entering their password

    Declaration

    Swift

    case password
  • otp

    One-time code generated from TOTP app

    Declaration

    Swift

    case otp
  • sms

    One-time code sent to user as SMS

    Declaration

    Swift

    case sms
  • eid

    BankId verification

    Declaration

    Swift

    case eid
  • BankId verification for PRE environment

    Declaration

    Swift

    case preEid(PreEidType)