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;
    }
    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