DispatchChannel

public enum DispatchChannel : String, Codable, CaseIterable

The different dispatch channels (dispatchers in nevisFIDO terminology) that can be used with to transmit the out-of-band operation: the out-of-band operation reaches the application either through a QR code, a FCM push notification or a link.

See

See the nevisFIDO Dispatchers for Mobile Authentication section for details.
  • The Firebase Cloud Messaging (that is, a push notification) was used for the out-of-band operation.

    Declaration

    Swift

    case push = "firebase-cloud-messaging"
  • The QR code dispatcher was used for the out-of-band operation.

    Declaration

    Swift

    case qrCode = "png-qr-code"
  • A link (Universal Link, App Links, etc.) was used for the out-of-band operation.

    Declaration

    Swift

    case universalLink = "link"
  • The value for this dispatcher as defined in nevisFIDO.

    Declaration

    Swift

    var value: String { get }