Class: Google::Apis::DfareportingV3_1::OptimizationActivity
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_1::OptimizationActivity
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v3_1/classes.rb,
generated/google/apis/dfareporting_v3_1/representations.rb,
generated/google/apis/dfareporting_v3_1/representations.rb 
Overview
Creative optimization activity.
Instance Attribute Summary collapse
- 
  
    
      #floodlight_activity_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Floodlight activity ID of this optimization activity.
 - 
  
    
      #floodlight_activity_id_dimension_value  ⇒ Google::Apis::DfareportingV3_1::DimensionValue 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Represents a DimensionValue resource.
 - 
  
    
      #weight  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Weight associated with this optimization.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OptimizationActivity 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of OptimizationActivity.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OptimizationActivity
Returns a new instance of OptimizationActivity
      7790 7791 7792  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7790 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#floodlight_activity_id ⇒ Fixnum
Floodlight activity ID of this optimization activity. This is a required field.
Corresponds to the JSON property floodlightActivityId
      7776 7777 7778  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7776 def floodlight_activity_id @floodlight_activity_id end  | 
  
#floodlight_activity_id_dimension_value ⇒ Google::Apis::DfareportingV3_1::DimensionValue
Represents a DimensionValue resource.
Corresponds to the JSON property floodlightActivityIdDimensionValue
      7781 7782 7783  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7781 def floodlight_activity_id_dimension_value @floodlight_activity_id_dimension_value end  | 
  
#weight ⇒ Fixnum
Weight associated with this optimization. The weight assigned will be
understood in proportion to the weights assigned to the other optimization
activities. Value must be greater than or equal to 1.
Corresponds to the JSON property weight
      7788 7789 7790  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7788 def weight @weight end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      7795 7796 7797 7798 7799  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7795 def update!(**args) @floodlight_activity_id = args[:floodlight_activity_id] if args.key?(:floodlight_activity_id) @floodlight_activity_id_dimension_value = args[:floodlight_activity_id_dimension_value] if args.key?(:floodlight_activity_id_dimension_value) @weight = args[:weight] if args.key?(:weight) end  |