Class: Google::Apis::DfareportingV3_0::ClickThroughUrl
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_0::ClickThroughUrl
 
 
- 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
Click-through URL
Instance Attribute Summary collapse
- 
  
    
      #computed_click_through_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Read-only convenience field representing the actual URL that will be used for this click-through.
 - 
  
    
      #custom_click_through_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Custom click-through URL.
 - 
  
    
      #default_landing_page  ⇒ Boolean 
    
    
      (also: #default_landing_page?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Whether the campaign default landing page is used.
 - 
  
    
      #landing_page_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
ID of the landing page for the click-through URL.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ClickThroughUrl 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ClickThroughUrl.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ClickThroughUrl
Returns a new instance of ClickThroughUrl
      2074 2075 2076  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2074 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#computed_click_through_url ⇒ String
Read-only convenience field representing the actual URL that will be used for this click-through. The URL is computed as follows:
- If defaultLandingPage is enabled then the campaign's default landing page URL is assigned to this field.
 - If defaultLandingPage is not enabled and a landingPageId is specified then that landing page's URL is assigned to this field.
 - If neither of the above cases apply, then the customClickThroughUrl is
assigned to this field.
Corresponds to the JSON property 
computedClickThroughUrl 
      2054 2055 2056  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2054 def computed_click_through_url @computed_click_through_url end  | 
  
#custom_click_through_url ⇒ String
Custom click-through URL. Applicable if the defaultLandingPage field is set to
false and the landingPageId field is left unset.
Corresponds to the JSON property customClickThroughUrl
      2060 2061 2062  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2060 def custom_click_through_url @custom_click_through_url end  | 
  
#default_landing_page ⇒ Boolean Also known as: default_landing_page?
Whether the campaign default landing page is used.
Corresponds to the JSON property defaultLandingPage
      2065 2066 2067  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2065 def default_landing_page @default_landing_page end  | 
  
#landing_page_id ⇒ Fixnum
ID of the landing page for the click-through URL. Applicable if the
defaultLandingPage field is set to false.
Corresponds to the JSON property landingPageId
      2072 2073 2074  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2072 def landing_page_id @landing_page_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2079 2080 2081 2082 2083 2084  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2079 def update!(**args) @computed_click_through_url = args[:computed_click_through_url] if args.key?(:computed_click_through_url) @custom_click_through_url = args[:custom_click_through_url] if args.key?(:custom_click_through_url) @default_landing_page = args[:default_landing_page] if args.key?(:default_landing_page) @landing_page_id = args[:landing_page_id] if args.key?(:landing_page_id) end  |