Class: Google::Apis::DfareportingV3_0::CompanionClickThroughOverride
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV3_0::CompanionClickThroughOverride
 
- 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
Companion Click-through override.
Instance Attribute Summary collapse
- 
  
    
      #click_through_url  ⇒ Google::Apis::DfareportingV3_0::ClickThroughUrl 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Click-through URL Corresponds to the JSON property clickThroughUrl.
- 
  
    
      #creative_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    ID of the creative for this companion click-through override. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CompanionClickThroughOverride 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CompanionClickThroughOverride. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CompanionClickThroughOverride
Returns a new instance of CompanionClickThroughOverride
| 2129 2130 2131 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2129 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#click_through_url ⇒ Google::Apis::DfareportingV3_0::ClickThroughUrl
Click-through URL
Corresponds to the JSON property clickThroughUrl
| 2122 2123 2124 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2122 def click_through_url @click_through_url end | 
#creative_id ⇒ Fixnum
ID of the creative for this companion click-through override.
Corresponds to the JSON property creativeId
| 2127 2128 2129 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2127 def creative_id @creative_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2134 2135 2136 2137 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2134 def update!(**args) @click_through_url = args[:click_through_url] if args.key?(:click_through_url) @creative_id = args[:creative_id] if args.key?(:creative_id) end |