Class: Google::Apis::DfareportingV2_8::RichMediaExitOverride
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV2_8::RichMediaExitOverride
 
- 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
Rich Media Exit Override.
Instance Attribute Summary collapse
- 
  
    
      #click_through_url  ⇒ Google::Apis::DfareportingV2_8::ClickThroughUrl 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Click-through URL Corresponds to the JSON property clickThroughUrl.
- 
  
    
      #enabled  ⇒ Boolean 
    
    
      (also: #enabled?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether to use the clickThroughUrl. 
- 
  
    
      #exit_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    ID for the override to refer to a specific exit in the creative. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RichMediaExitOverride 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of RichMediaExitOverride. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RichMediaExitOverride
Returns a new instance of RichMediaExitOverride
| 10445 10446 10447 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10445 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#click_through_url ⇒ Google::Apis::DfareportingV2_8::ClickThroughUrl
Click-through URL
Corresponds to the JSON property clickThroughUrl
| 10431 10432 10433 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10431 def click_through_url @click_through_url end | 
#enabled ⇒ Boolean Also known as: enabled?
Whether to use the clickThroughUrl. If false, the creative-level exit will be
used.
Corresponds to the JSON property enabled
| 10437 10438 10439 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10437 def enabled @enabled end | 
#exit_id ⇒ Fixnum
ID for the override to refer to a specific exit in the creative.
Corresponds to the JSON property exitId
| 10443 10444 10445 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10443 def exit_id @exit_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 10450 10451 10452 10453 10454 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10450 def update!(**args) @click_through_url = args[:click_through_url] if args.key?(:click_through_url) @enabled = args[:enabled] if args.key?(:enabled) @exit_id = args[:exit_id] if args.key?(:exit_id) end |