Show / Hide Table of Contents

Class GetIosReopenAttributionRequest

Request for iSDK to get reopen attribution for app universal link open deeplinking. This endpoint is meant for only iOS requests.

Inheritance
System.Object
GetIosReopenAttributionRequest
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 GetIosReopenAttributionRequest : IDirectResponseSchema

Properties

BundleId

APP bundle ID.

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

ETag

The ETag of the item.

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

RequestedLink

FDL link to be verified from an app universal link open. The FDL link can be one of: 1) short FDL. e.g. .page.link/, or 2) long FDL. e.g. .page.link/?{query params}, or 3) Invite FDL. e.g. .page.link/i/

Declaration
[JsonProperty("requestedLink")]
public virtual string RequestedLink { 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

Implements

IDirectResponseSchema
Back to top