airbridge-web-sdk
    Preparing search index...

    Type Alias OpenDeeplinkOptions

    type OpenDeeplinkOptions = {
        type: "redirect" | "click";
        deeplinks?: DeeplinkOptions["deeplinks"];
        fallbacks?: DeeplinkOptions["fallbacks"];
        defaultParams?: PlacementParameters["defaultParams"];
        ctaParams?: PlacementParameters["ctaParams"];
        desktopPopUp?: boolean;
        options?: { iosStoreProductPage?: string; androidStoreListing?: string };
    }
    Index

    Properties

    type: "redirect" | "click"

    Determines the type of opening the deeplink.
    If set to redirect, opens the application directly without the user gesture.
    If set to click, opens the application after the user gesture in the click event.

    desktopPopUp?: boolean

    Whether to open the application in new window on desktop environment.
    If set to true, opens the application in new window on desktop environment.

    false
    
    options?: { iosStoreProductPage?: string; androidStoreListing?: string }

    Type Declaration

    • OptionaliosStoreProductPage?: string

      The ID of the custom product page to open in the Apple App Store when fallbacks.ios is set to itunes-appstore.
      Takes precedence over the ppid parsed from the App Store URL in the app settings.
      Ignored when fallbacks.ios is set to anything else, such as a website link.

    • OptionalandroidStoreListing?: string

      The ID of the custom store listing to open in the Google Play Store when fallbacks.android is set to google-play.
      Takes precedence over the listing parsed from the Google Play URL in the app settings.
      Ignored when fallbacks.android is set to anything else, such as a website link or a third-party store link.