Class: Google::Apis::DfareportingV3_5::CreativeClickThroughUrl

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dfareporting_v3_5/classes.rb,
lib/google/apis/dfareporting_v3_5/representations.rb,
lib/google/apis/dfareporting_v3_5/representations.rb

Overview

Click-through URL

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CreativeClickThroughUrl

Returns a new instance of CreativeClickThroughUrl.



4023
4024
4025
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 4023

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#computed_click_through_urlString

Read-only convenience field representing the actual URL that will be used for this click-through. The URL is computed as follows: - If landingPageId is specified then that landing page's URL is assigned to this field. - Otherwise, the customClickThroughUrl is assigned to this field. Corresponds to the JSON property computedClickThroughUrl

Returns:

  • (String)


4011
4012
4013
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 4011

def computed_click_through_url
  @computed_click_through_url
end

#custom_click_through_urlString

Custom click-through URL. Applicable if the landingPageId field is left unset. Corresponds to the JSON property customClickThroughUrl

Returns:

  • (String)


4016
4017
4018
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 4016

def custom_click_through_url
  @custom_click_through_url
end

#landing_page_idFixnum

ID of the landing page for the click-through URL. Corresponds to the JSON property landingPageId

Returns:

  • (Fixnum)


4021
4022
4023
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 4021

def landing_page_id
  @landing_page_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4028
4029
4030
4031
4032
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 4028

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)
  @landing_page_id = args[:landing_page_id] if args.key?(:landing_page_id)
end