airbridge-web-sdk
    Preparing search index...

    Type Alias DeeplinkOptions

    type DeeplinkOptions = {
        deeplinks?: { ios?: string; android?: string; desktop?: string };
        fallbacks?: {
            ios?: "itunes-appstore" | string;
            android?: "google-play" | string;
        };
        desktopPopUp?: boolean;
    }
    Index

    Properties

    deeplinks?: { ios?: string; android?: string; desktop?: string }
    fallbacks?: {
        ios?: "itunes-appstore" | string;
        android?: "google-play" | string;
    }

    Type declaration

    • Optionalios?: "itunes-appstore" | string

      Determines the fallback URL when the application is not installed in iOS.
      If set to itunes-appstore, opens the Apple App Store when the application is not installed.
      If set to the website link, opens the website when the application is not installed.

    • Optionalandroid?: "google-play" | string

      Determines the fallback URL when the application is not installed in Android.
      If set to google-play, opens the Google Play Store when the application is not installed.
      If set to the website link, opens the website when the application is not installed.

    desktopPopUp?: boolean