Show / Hide Table of Contents

Class GetIosPostInstallAttributionRequest

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.

Inheritance
System.Object
GetIosPostInstallAttributionRequest
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.FirebaseDynamicLinks.v1.Data
Assembly: Google.Apis.FirebaseDynamicLinks.v1.dll
Syntax
public class GetIosPostInstallAttributionRequest : IDirectResponseSchema

Properties

AppInstallationTime

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

Declaration
[JsonProperty("appInstallationTime")]
public virtual long? AppInstallationTime { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

BundleId

APP bundle ID.

Declaration
[JsonProperty("bundleId")]
public virtual string BundleId { get; set; }
Property Value
Type Description
System.String

Device

Device information.

Declaration
[JsonProperty("device")]
public virtual DeviceInfo Device { get; set; }
Property Value
Type Description
DeviceInfo

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

IosVersion

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

Declaration
[JsonProperty("iosVersion")]
public virtual string IosVersion { get; set; }
Property Value
Type Description
System.String

RetrievalMethod

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

Declaration
[JsonProperty("retrievalMethod")]
public virtual string RetrievalMethod { get; set; }
Property Value
Type Description
System.String

SdkVersion

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

Declaration
[JsonProperty("sdkVersion")]
public virtual string SdkVersion { get; set; }
Property Value
Type Description
System.String

UniqueMatchLinkToCheck

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

Declaration
[JsonProperty("uniqueMatchLinkToCheck")]
public virtual string UniqueMatchLinkToCheck { get; set; }
Property Value
Type Description
System.String

VisualStyle

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

Declaration
[JsonProperty("visualStyle")]
public virtual string VisualStyle { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top