Class: Google::Apis::DfareportingV3_0::CustomRichMediaEvents
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV3_0::CustomRichMediaEvents
 
- 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 a Custom Rich Media Events group.
Instance Attribute Summary collapse
- 
  
    
      #filtered_event_ids  ⇒ Array<Google::Apis::DfareportingV3_0::DimensionValue> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of custom rich media event IDs. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The kind of resource this is, in this case dfareporting#customRichMediaEvents. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CustomRichMediaEvents 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CustomRichMediaEvents. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CustomRichMediaEvents
Returns a new instance of CustomRichMediaEvents
| 4578 4579 4580 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4578 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#filtered_event_ids ⇒ Array<Google::Apis::DfareportingV3_0::DimensionValue>
List of custom rich media event IDs. Dimension values must be all of type dfa:
richMediaEventTypeIdAndName.
Corresponds to the JSON property filteredEventIds
| 4571 4572 4573 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4571 def filtered_event_ids @filtered_event_ids end | 
#kind ⇒ String
The kind of resource this is, in this case dfareporting#customRichMediaEvents.
Corresponds to the JSON property kind
| 4576 4577 4578 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4576 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4583 4584 4585 4586 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4583 def update!(**args) @filtered_event_ids = args[:filtered_event_ids] if args.key?(:filtered_event_ids) @kind = args[:kind] if args.key?(:kind) end |