Class: Google::Apis::DfareportingV2_8::OmnitureSettings
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV2_8::OmnitureSettings
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_8/classes.rb,
 generated/google/apis/dfareporting_v2_8/representations.rb,
 generated/google/apis/dfareporting_v2_8/representations.rb
Overview
Omniture Integration Settings.
Instance Attribute Summary collapse
- 
  
    
      #omniture_cost_data_enabled  ⇒ Boolean 
    
    
      (also: #omniture_cost_data_enabled?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether placement cost data will be sent to Omniture. 
- 
  
    
      #omniture_integration_enabled  ⇒ Boolean 
    
    
      (also: #omniture_integration_enabled?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether Omniture integration is enabled. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OmnitureSettings 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of OmnitureSettings. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OmnitureSettings
Returns a new instance of OmnitureSettings
| 7399 7400 7401 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 7399 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#omniture_cost_data_enabled ⇒ Boolean Also known as: omniture_cost_data_enabled?
Whether placement cost data will be sent to Omniture. This property can be
enabled only if omnitureIntegrationEnabled is true.
Corresponds to the JSON property omnitureCostDataEnabled
| 7389 7390 7391 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 7389 def omniture_cost_data_enabled @omniture_cost_data_enabled end | 
#omniture_integration_enabled ⇒ Boolean Also known as: omniture_integration_enabled?
Whether Omniture integration is enabled. This property can be enabled only
when the "Advanced Ad Serving" account setting is enabled.
Corresponds to the JSON property omnitureIntegrationEnabled
| 7396 7397 7398 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 7396 def omniture_integration_enabled @omniture_integration_enabled end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 7404 7405 7406 7407 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 7404 def update!(**args) @omniture_cost_data_enabled = args[:omniture_cost_data_enabled] if args.key?(:omniture_cost_data_enabled) @omniture_integration_enabled = args[:omniture_integration_enabled] if args.key?(:omniture_integration_enabled) end |