Show / Hide Table of Contents

Class Report.PathToConversionCriteriaData.ReportPropertiesData

The properties of the report.

Inheritance
System.Object
Report.PathToConversionCriteriaData.ReportPropertiesData
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 ReportPropertiesData

Properties

ClicksLookbackWindow

CM360 checks to see if a click interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.

Declaration
[JsonProperty("clicksLookbackWindow")]
public virtual int? ClicksLookbackWindow { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ImpressionsLookbackWindow

CM360 checks to see if an impression interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.

Declaration
[JsonProperty("impressionsLookbackWindow")]
public virtual int? ImpressionsLookbackWindow { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

IncludeAttributedIPConversions

Deprecated: has no effect.

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

IncludeUnattributedCookieConversions

Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.

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

IncludeUnattributedIPConversions

Include conversions that have no associated cookies and no exposures. It’s therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.

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

MaximumClickInteractions

The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.

Declaration
[JsonProperty("maximumClickInteractions")]
public virtual int? MaximumClickInteractions { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

MaximumImpressionInteractions

The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.

Declaration
[JsonProperty("maximumImpressionInteractions")]
public virtual int? MaximumImpressionInteractions { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

MaximumInteractionGap

The maximum amount of time that can take place between interactions (clicks or impressions) by the same user. Valid values: 1-90.

Declaration
[JsonProperty("maximumInteractionGap")]
public virtual int? MaximumInteractionGap { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PivotOnInteractionPath

Enable pivoting on interaction path.

Declaration
[JsonProperty("pivotOnInteractionPath")]
public virtual bool? PivotOnInteractionPath { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
In This Article
Back to top