Class: Google::Apis::AnalyticsreportingV4::MetricFilterClause
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AnalyticsreportingV4::MetricFilterClause
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/analyticsreporting_v4/classes.rb,
 generated/google/apis/analyticsreporting_v4/representations.rb,
 generated/google/apis/analyticsreporting_v4/representations.rb
Overview
Represents a group of metric filters. Set the operator value to specify how the filters are logically combined.
Instance Attribute Summary collapse
- 
  
    
      #filters  ⇒ Array<Google::Apis::AnalyticsreportingV4::MetricFilter> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The repeated set of filters. 
- 
  
    
      #operator  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The operator for combining multiple metric filters. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ MetricFilterClause 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of MetricFilterClause. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MetricFilterClause
Returns a new instance of MetricFilterClause
| 545 546 547 | # File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 545 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#filters ⇒ Array<Google::Apis::AnalyticsreportingV4::MetricFilter>
The repeated set of filters. They are logically combined based on the
operator specified.
Corresponds to the JSON property filters
| 537 538 539 | # File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 537 def filters @filters end | 
#operator ⇒ String
The operator for combining multiple metric filters. If unspecified, it is
treated as an OR.
Corresponds to the JSON property operator
| 543 544 545 | # File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 543 def operator @operator end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 550 551 552 553 | # File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 550 def update!(**args) @filters = args[:filters] if args.key?(:filters) @operator = args[:operator] if args.key?(:operator) end |