class Google::Apis::DfareportingV3_5::Report::PathToConversionCriteria::ReportProperties

The properties of the report.

Attributes

clicks_lookback_window[RW]

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. Corresponds to the JSON property `clicksLookbackWindow` @return [Fixnum]

impressions_lookback_window[RW]

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. Corresponds to the JSON property `impressionsLookbackWindow` @return [Fixnum]

include_attributed_ip_conversions[RW]

Deprecated: has no effect. Corresponds to the JSON property `includeAttributedIPConversions` @return [Boolean]

include_attributed_ip_conversions?[RW]

Deprecated: has no effect. Corresponds to the JSON property `includeAttributedIPConversions` @return [Boolean]

include_unattributed_ip_conversions[RW]

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. Corresponds to the JSON property `includeUnattributedIPConversions` @return [Boolean]

include_unattributed_ip_conversions?[RW]

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. Corresponds to the JSON property `includeUnattributedIPConversions` @return [Boolean]

maximum_click_interactions[RW]

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. Corresponds to the JSON property `maximumClickInteractions` @return [Fixnum]

maximum_impression_interactions[RW]

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. Corresponds to the JSON property `maximumImpressionInteractions` @return [Fixnum]

maximum_interaction_gap[RW]

The maximum amount of time that can take place between interactions (clicks or impressions) by the same user. Valid values: 1-90. Corresponds to the JSON property `maximumInteractionGap` @return [Fixnum]

pivot_on_interaction_path[RW]

Enable pivoting on interaction path. Corresponds to the JSON property `pivotOnInteractionPath` @return [Boolean]

pivot_on_interaction_path?[RW]

Enable pivoting on interaction path. Corresponds to the JSON property `pivotOnInteractionPath` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 10673
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dfareporting_v3_5/classes.rb, line 10678
def update!(**args)
  @clicks_lookback_window = args[:clicks_lookback_window] if args.key?(:clicks_lookback_window)
  @impressions_lookback_window = args[:impressions_lookback_window] if args.key?(:impressions_lookback_window)
  @include_attributed_ip_conversions = args[:include_attributed_ip_conversions] if args.key?(:include_attributed_ip_conversions)
  @include_unattributed_cookie_conversions = args[:include_unattributed_cookie_conversions] if args.key?(:include_unattributed_cookie_conversions)
  @include_unattributed_ip_conversions = args[:include_unattributed_ip_conversions] if args.key?(:include_unattributed_ip_conversions)
  @maximum_click_interactions = args[:maximum_click_interactions] if args.key?(:maximum_click_interactions)
  @maximum_impression_interactions = args[:maximum_impression_interactions] if args.key?(:maximum_impression_interactions)
  @maximum_interaction_gap = args[:maximum_interaction_gap] if args.key?(:maximum_interaction_gap)
  @pivot_on_interaction_path = args[:pivot_on_interaction_path] if args.key?(:pivot_on_interaction_path)
end