Class: Google::Apis::DfareportingV3_0::Activities
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_0::Activities
 
 
- 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 an activity group.
Instance Attribute Summary collapse
- 
  
    
      #filters  ⇒ Array<Google::Apis::DfareportingV3_0::DimensionValue> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of activity filters.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The kind of resource this is, in this case dfareporting#activities.
 - 
  
    
      #metric_names  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of names of floodlight activity metrics.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Activities 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Activities.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Activities
Returns a new instance of Activities
      634 635 636  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 634 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#filters ⇒ Array<Google::Apis::DfareportingV3_0::DimensionValue>
List of activity filters. The dimension values need to be all either of type "
dfa:activity" or "dfa:activityGroup".
Corresponds to the JSON property filters
      622 623 624  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 622 def filters @filters end  | 
  
#kind ⇒ String
The kind of resource this is, in this case dfareporting#activities.
Corresponds to the JSON property kind
      627 628 629  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 627 def kind @kind end  | 
  
#metric_names ⇒ Array<String>
List of names of floodlight activity metrics.
Corresponds to the JSON property metricNames
      632 633 634  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 632 def metric_names @metric_names end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      639 640 641 642 643  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 639 def update!(**args) @filters = args[:filters] if args.key?(:filters) @kind = args[:kind] if args.key?(:kind) @metric_names = args[:metric_names] if args.key?(:metric_names) end  |