MfaQRScanResult

public final class MfaQRScanResult : QRScanResultProtocol

The MfaQRScanResult handles registration data scanned from a QR code.

  • The OAuth authorization code.

    Declaration

    Swift

    public fileprivate(set) var code: String
  • The metadata discovery endpoint.

    Declaration

    Swift

    public fileprivate(set) var metadataUrl: String
  • The unique identifier between the service and the client app.

    Declaration

    Swift

    public fileprivate(set) var clientId: String
  • The endpoint version.

    Declaration

    Swift

    public fileprivate(set) var version: Int
  • The flag to ignore SSL certifcate checking.

    Declaration

    Swift

    public fileprivate(set) var ignoreSslCerts: Bool
  • Parses the incoming data from the QR code.

    Declaration

    Swift

    public static func parse(_ value: String?) -> MfaQRScanResult?