Class: Google::Apis::DfareportingV3_0::CrossDimensionReachReportCompatibleFields
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_0::CrossDimensionReachReportCompatibleFields
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v3_0/classes.rb,
generated/google/apis/dfareporting_v3_0/representations.rb,
generated/google/apis/dfareporting_v3_0/representations.rb 
Overview
Represents fields that are compatible to be selected for a report of type " CROSS_DIMENSION_REACH".
Instance Attribute Summary collapse
- 
  
    
      #breakdown  ⇒ Array<Google::Apis::DfareportingV3_0::Dimension> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Dimensions which are compatible to be selected in the "breakdown" section of the report.
 - 
  
    
      #dimension_filters  ⇒ Array<Google::Apis::DfareportingV3_0::Dimension> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Dimensions which are compatible to be selected in the "dimensionFilters" section of the report.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The kind of resource this is, in this case dfareporting# crossDimensionReachReportCompatibleFields.
 - 
  
    
      #metrics  ⇒ Array<Google::Apis::DfareportingV3_0::Metric> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Metrics which are compatible to be selected in the "metricNames" section of the report.
 - 
  
    
      #overlap_metrics  ⇒ Array<Google::Apis::DfareportingV3_0::Metric> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Metrics which are compatible to be selected in the "overlapMetricNames" section of the report.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CrossDimensionReachReportCompatibleFields 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of CrossDimensionReachReportCompatibleFields.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CrossDimensionReachReportCompatibleFields
Returns a new instance of CrossDimensionReachReportCompatibleFields
      4517 4518 4519  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4517 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#breakdown ⇒ Array<Google::Apis::DfareportingV3_0::Dimension>
Dimensions which are compatible to be selected in the "breakdown" section of
the report.
Corresponds to the JSON property breakdown
      4491 4492 4493  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4491 def breakdown @breakdown end  | 
  
#dimension_filters ⇒ Array<Google::Apis::DfareportingV3_0::Dimension>
Dimensions which are compatible to be selected in the "dimensionFilters"
section of the report.
Corresponds to the JSON property dimensionFilters
      4497 4498 4499  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4497 def dimension_filters @dimension_filters end  | 
  
#kind ⇒ String
The kind of resource this is, in this case dfareporting#
crossDimensionReachReportCompatibleFields.
Corresponds to the JSON property kind
      4503 4504 4505  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4503 def kind @kind end  | 
  
#metrics ⇒ Array<Google::Apis::DfareportingV3_0::Metric>
Metrics which are compatible to be selected in the "metricNames" section of
the report.
Corresponds to the JSON property metrics
      4509 4510 4511  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4509 def metrics @metrics end  | 
  
#overlap_metrics ⇒ Array<Google::Apis::DfareportingV3_0::Metric>
Metrics which are compatible to be selected in the "overlapMetricNames"
section of the report.
Corresponds to the JSON property overlapMetrics
      4515 4516 4517  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4515 def overlap_metrics @overlap_metrics end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4522 4523 4524 4525 4526 4527 4528  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4522 def update!(**args) @breakdown = args[:breakdown] if args.key?(:breakdown) @dimension_filters = args[:dimension_filters] if args.key?(:dimension_filters) @kind = args[:kind] if args.key?(:kind) @metrics = args[:metrics] if args.key?(:metrics) @overlap_metrics = args[:overlap_metrics] if args.key?(:overlap_metrics) end  |