Class: Google::Apis::DfareportingV3_4::Report::FloodlightCriteria::ReportProperties

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

Overview

The properties of the report.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReportProperties

Returns a new instance of ReportProperties.



10757
10758
10759
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10757

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)


10738
10739
10740
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10738

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)


10746
10747
10748
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10746

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)


10754
10755
10756
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10754

def include_unattributed_ip_conversions
  @include_unattributed_ip_conversions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10762
10763
10764
10765
10766
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10762

def update!(**args)
  @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)
end