FirebaseDynamicLinks Framework Reference

DynamicLink

class DynamicLink : NSObject

A received Dynamic Link.

  • url

    The URL that was passed to the app.

    Declaration

    Swift

    var url: URL? { get }
  • The match type of the received Dynamic Link.

    Declaration

    Swift

    var matchType: DLMatchType { get }
  • UTM parameters associated with a Firebase Dynamic Link.

    Declaration

    Swift

    var utmParametersDictionary: [String : Any] { get }
  • The minimum iOS application version that supports the Dynamic Link. This is retrieved from the imv= parameter of the Dynamic Link URL. Note: This is not the minimum iOS system version, but the minimum app version. If app version of the opening app is less than the value of this property, then app expected to open AppStore to allow user to download most recent version. App can notify or ask user before opening AppStore.

    Declaration

    Swift

    var minimumAppVersion: String? { get }
  • Undocumented