FirebaseDynamicLinks Framework Reference

DLMatchType

enum DLMatchType : UInt, @unchecked Sendable

The match type of the Dynamic Link.

  • The match has not been achieved.

    Declaration

    Swift

    case none = 0
  • The match between the Dynamic Link and this device may not be perfect, hence you should not reveal any personal information related to the Dynamic Link.

    Declaration

    Swift

    case weak = 1
  • The match between the Dynamic Link and this device has high confidence but small possibility of error still exist.

    Declaration

    Swift

    case `default` = 2
  • The match between the Dynamic Link and this device is exact, hence you may reveal personal information related to the Dynamic Link.

    Declaration

    Swift

    case unique = 3