Show / Hide Table of Contents

Class DeepLink

Contains information about a landing page deep link.

Inheritance
System.Object
DeepLink
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.Dfareporting.v3_3.Data
Assembly: Google.Apis.Dfareporting.v3_3.dll
Syntax
public class DeepLink : IDirectResponseSchema

Properties

AppUrl

The URL of the mobile app being linked to.

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

FallbackUrl

The fallback URL. This URL will be served to users who do not have the mobile app installed.

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

Kind

Identifies what kind of resource this is. Value: the fixed string "dfareporting#deepLink".

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

MobileApp

The mobile app targeted by this deep link.

Declaration
[JsonProperty("mobileApp")]
public virtual MobileApp MobileApp { get; set; }
Property Value
Type Description
MobileApp

RemarketingListIds

Ads served to users on these remarketing lists will use this deep link. Applicable when mobileApp.directory is APPLE_APP_STORE.

Declaration
[JsonProperty("remarketingListIds")]
public virtual IList<long?> RemarketingListIds { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Nullable<System.Int64>>

Implements

IDirectResponseSchema
In This Article
Back to top