Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GetIosPostInstallAttributionRequest

import type { GetIosPostInstallAttributionRequest } from "https://googleapis.deno.dev/v1/firebasedynamiclinks:v1.ts";

Request for iSDK to execute strong match flow for post-install attribution. This is meant for iOS requests only. Requests from other platforms will not be honored.

interface GetIosPostInstallAttributionRequest {
appInstallationTime?: bigint;
bundleId?: string;
device?: DeviceInfo;
iosVersion?: string;
retrievalMethod?:
| "UNKNOWN_PAYLOAD_RETRIEVAL_METHOD"
| "IMPLICIT_WEAK_MATCH"
| "EXPLICIT_WEAK_MATCH"
| "EXPLICIT_STRONG_AFTER_WEAK_MATCH";
sdkVersion?: string;
uniqueMatchLinkToCheck?: string;
visualStyle?: "UNKNOWN_VISUAL_STYLE" | "DEFAULT_STYLE" | "CUSTOM_STYLE";
}

§Properties

§
appInstallationTime?: bigint
[src]

App installation epoch time (https://en.wikipedia.org/wiki/Unix_time). This is a client signal for a more accurate weak match.

§
bundleId?: string
[src]

APP bundle ID.

§

Device information.

§
iosVersion?: string
[src]

iOS version, ie: 9.3.5. Consider adding "build".

§
retrievalMethod?: "UNKNOWN_PAYLOAD_RETRIEVAL_METHOD" | "IMPLICIT_WEAK_MATCH" | "EXPLICIT_WEAK_MATCH" | "EXPLICIT_STRONG_AFTER_WEAK_MATCH"
[src]

App post install attribution retrieval information. Disambiguates mechanism (iSDK or developer invoked) to retrieve payload from clicked link.

§
sdkVersion?: string
[src]

Google SDK version. Version takes the form "$major.$minor.$patch"

§
uniqueMatchLinkToCheck?: string
[src]

Possible unique matched link that server need to check before performing device heuristics match. If passed link is short server need to expand the link. If link is long server need to vslidate the link.

§
visualStyle?: "UNKNOWN_VISUAL_STYLE" | "DEFAULT_STYLE" | "CUSTOM_STYLE"
[src]

Strong match page information. Disambiguates between default UI and custom page to present when strong match succeeds/fails to find cookie.