Class: Google::Apis::DfareportingV2_8::ReachReportCompatibleFields
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV2_8::ReachReportCompatibleFields
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_8/classes.rb,
 generated/google/apis/dfareporting_v2_8/representations.rb,
 generated/google/apis/dfareporting_v2_8/representations.rb
Overview
Represents fields that are compatible to be selected for a report of type " REACH".
Instance Attribute Summary collapse
- 
  
    
      #dimension_filters  ⇒ Array<Google::Apis::DfareportingV2_8::Dimension> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Dimensions which are compatible to be selected in the "dimensionFilters" section of the report. 
- 
  
    
      #dimensions  ⇒ Array<Google::Apis::DfareportingV2_8::Dimension> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Dimensions which are compatible to be selected in the "dimensions" section of the report. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The kind of resource this is, in this case dfareporting# reachReportCompatibleFields. 
- 
  
    
      #metrics  ⇒ Array<Google::Apis::DfareportingV2_8::Metric> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Metrics which are compatible to be selected in the "metricNames" section of the report. 
- 
  
    
      #pivoted_activity_metrics  ⇒ Array<Google::Apis::DfareportingV2_8::Metric> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Metrics which are compatible to be selected as activity metrics to pivot on in the "activities" section of the report. 
- 
  
    
      #reach_by_frequency_metrics  ⇒ Array<Google::Apis::DfareportingV2_8::Metric> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Metrics which are compatible to be selected in the " reachByFrequencyMetricNames" section of the report. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ReachReportCompatibleFields 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ReachReportCompatibleFields. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ReachReportCompatibleFields
Returns a new instance of ReachReportCompatibleFields
| 9338 9339 9340 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 9338 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#dimension_filters ⇒ Array<Google::Apis::DfareportingV2_8::Dimension>
Dimensions which are compatible to be selected in the "dimensionFilters"
section of the report.
Corresponds to the JSON property dimensionFilters
| 9306 9307 9308 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 9306 def dimension_filters @dimension_filters end | 
#dimensions ⇒ Array<Google::Apis::DfareportingV2_8::Dimension>
Dimensions which are compatible to be selected in the "dimensions" section of
the report.
Corresponds to the JSON property dimensions
| 9312 9313 9314 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 9312 def dimensions @dimensions end | 
#kind ⇒ String
The kind of resource this is, in this case dfareporting#
reachReportCompatibleFields.
Corresponds to the JSON property kind
| 9318 9319 9320 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 9318 def kind @kind end | 
#metrics ⇒ Array<Google::Apis::DfareportingV2_8::Metric>
Metrics which are compatible to be selected in the "metricNames" section of
the report.
Corresponds to the JSON property metrics
| 9324 9325 9326 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 9324 def metrics @metrics end | 
#pivoted_activity_metrics ⇒ Array<Google::Apis::DfareportingV2_8::Metric>
Metrics which are compatible to be selected as activity metrics to pivot on in
the "activities" section of the report.
Corresponds to the JSON property pivotedActivityMetrics
| 9330 9331 9332 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 9330 def pivoted_activity_metrics @pivoted_activity_metrics end | 
#reach_by_frequency_metrics ⇒ Array<Google::Apis::DfareportingV2_8::Metric>
Metrics which are compatible to be selected in the "
reachByFrequencyMetricNames" section of the report.
Corresponds to the JSON property reachByFrequencyMetrics
| 9336 9337 9338 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 9336 def reach_by_frequency_metrics @reach_by_frequency_metrics end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 9343 9344 9345 9346 9347 9348 9349 9350 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 9343 def update!(**args) @dimension_filters = args[:dimension_filters] if args.key?(:dimension_filters) @dimensions = args[:dimensions] if args.key?(:dimensions) @kind = args[:kind] if args.key?(:kind) @metrics = args[:metrics] if args.key?(:metrics) @pivoted_activity_metrics = args[:pivoted_activity_metrics] if args.key?(:pivoted_activity_metrics) @reach_by_frequency_metrics = args[:reach_by_frequency_metrics] if args.key?(:reach_by_frequency_metrics) end |