Show / Hide Table of Contents

Class ClickThroughUrl

Click-through URL

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

Properties

ComputedClickThroughUrl

Read-only convenience field representing the actual URL that will be used for this click-through. The URL is computed as follows: - If defaultLandingPage is enabled then the campaign's default landing page URL is assigned to this field. - If defaultLandingPage is not enabled and a landingPageId is specified then that landing page's URL is assigned to this field. - If neither of the above cases apply, then the customClickThroughUrl is assigned to this field.

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

CustomClickThroughUrl

Custom click-through URL. Applicable if the defaultLandingPage field is set to false and the landingPageId field is left unset.

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

DefaultLandingPage

Whether the campaign default landing page is used.

Declaration
[JsonProperty("defaultLandingPage")]
public virtual bool? DefaultLandingPage { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

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

LandingPageId

ID of the landing page for the click-through URL. Applicable if the defaultLandingPage field is set to false.

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

Implements

IDirectResponseSchema
In This Article
Back to top