Class: Google::Apis::DfareportingV2_1::Report::FloodlightCriteria::ReportProperties

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

Overview

The properties of the report.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ReportProperties

Returns a new instance of ReportProperties.



9164
9165
9166
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 9164

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

Instance Attribute Details

#include_attributed_ip_conversionsBoolean Also known as: include_attributed_ip_conversions?

Include conversions that have no cookie, but do have an exposure path. Corresponds to the JSON property includeAttributedIPConversions

Returns:

  • (Boolean)


9145
9146
9147
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 9145

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)


9153
9154
9155
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 9153

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)


9161
9162
9163
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 9161

def include_unattributed_ip_conversions
  @include_unattributed_ip_conversions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9169
9170
9171
9172
9173
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 9169

def update!(**args)
  @include_attributed_ip_conversions = args[:include_attributed_ip_conversions] unless args[:include_attributed_ip_conversions].nil?
  @include_unattributed_cookie_conversions = args[:include_unattributed_cookie_conversions] unless args[:include_unattributed_cookie_conversions].nil?
  @include_unattributed_ip_conversions = args[:include_unattributed_ip_conversions] unless args[:include_unattributed_ip_conversions].nil?
end