Class: Google::Apis::DfareportingV3_3::Report::PathToConversionCriteria::ReportProperties

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v3_3/classes.rb,
generated/google/apis/dfareporting_v3_3/representations.rb,
generated/google/apis/dfareporting_v3_3/representations.rb

Overview

The properties of the report.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ReportProperties

Returns a new instance of ReportProperties.



10234
10235
10236
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 10234

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#clicks_lookback_windowFixnum

DFA 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

Returns:

  • (Fixnum)


10175
10176
10177
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 10175

def clicks_lookback_window
  @clicks_lookback_window
end

#impressions_lookback_windowFixnum

DFA 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

Returns:

  • (Fixnum)


10182
10183
10184
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 10182

def impressions_lookback_window
  @impressions_lookback_window
end

#include_attributed_ip_conversionsBoolean Also known as: include_attributed_ip_conversions?

Deprecated: has no effect. Corresponds to the JSON property includeAttributedIPConversions

Returns:

  • (Boolean)


10187
10188
10189
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 10187

def include_attributed_ip_conversions
  @include_attributed_ip_conversions
end

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. Corresponds to the JSON property includeUnattributedCookieConversions

Returns:

  • (Boolean)


10195
10196
10197
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 10195

def include_unattributed_cookie_conversions
  @include_unattributed_cookie_conversions
end

#include_unattributed_ip_conversionsBoolean Also known as: include_unattributed_ip_conversions?

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

Returns:

  • (Boolean)


10203
10204
10205
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 10203

def include_unattributed_ip_conversions
  @include_unattributed_ip_conversions
end

#maximum_click_interactionsFixnum

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

Returns:

  • (Fixnum)


10212
10213
10214
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 10212

def maximum_click_interactions
  @maximum_click_interactions
end

#maximum_impression_interactionsFixnum

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

Returns:

  • (Fixnum)


10220
10221
10222
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 10220

def maximum_impression_interactions
  @maximum_impression_interactions
end

#maximum_interaction_gapFixnum

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

Returns:

  • (Fixnum)


10226
10227
10228
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 10226

def maximum_interaction_gap
  @maximum_interaction_gap
end

#pivot_on_interaction_pathBoolean Also known as: pivot_on_interaction_path?

Enable pivoting on interaction path. Corresponds to the JSON property pivotOnInteractionPath

Returns:

  • (Boolean)


10231
10232
10233
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 10231

def pivot_on_interaction_path
  @pivot_on_interaction_path
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10239
10240
10241
10242
10243
10244
10245
10246
10247
10248
10249
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 10239

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