Class: Google::Apis::DfareportingV3_0::ReportCompatibleFields
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_0::ReportCompatibleFields
 
 
- 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 " STANDARD".
Instance Attribute Summary collapse
- 
  
    
      #dimension_filters  ⇒ Array<Google::Apis::DfareportingV3_0::Dimension> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Dimensions which are compatible to be selected in the "dimensionFilters" section of the report.
 - 
  
    
      #dimensions  ⇒ Array<Google::Apis::DfareportingV3_0::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#reportCompatibleFields.
 - 
  
    
      #metrics  ⇒ Array<Google::Apis::DfareportingV3_0::Metric> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Metrics which are compatible to be selected in the "metricNames" section of the report.
 - 
  
    
      #pivoted_activity_metrics  ⇒ Array<Google::Apis::DfareportingV3_0::Metric> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Metrics which are compatible to be selected as activity metrics to pivot on in the "activities" section of the report.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ReportCompatibleFields 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ReportCompatibleFields.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ReportCompatibleFields
Returns a new instance of ReportCompatibleFields
      10392 10393 10394  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 10392 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#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
      10367 10368 10369  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 10367 def dimension_filters @dimension_filters end  | 
  
#dimensions ⇒ Array<Google::Apis::DfareportingV3_0::Dimension>
Dimensions which are compatible to be selected in the "dimensions" section of
the report.
Corresponds to the JSON property dimensions
      10373 10374 10375  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 10373 def dimensions @dimensions end  | 
  
#kind ⇒ String
The kind of resource this is, in this case dfareporting#reportCompatibleFields.
Corresponds to the JSON property kind
      10378 10379 10380  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 10378 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
      10384 10385 10386  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 10384 def metrics @metrics end  | 
  
#pivoted_activity_metrics ⇒ Array<Google::Apis::DfareportingV3_0::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
      10390 10391 10392  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 10390 def pivoted_activity_metrics @pivoted_activity_metrics end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      10397 10398 10399 10400 10401 10402 10403  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 10397 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) end  |