class Google::Apis::DfareportingV3_4::CreativeClickThroughUrl
Click-through URL
Attributes
computed_click_through_url[RW]
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` @return [String]
custom_click_through_url[RW]
Custom click-through URL. Applicable if the landingPageId field is left unset. Corresponds to the JSON property `customClickThroughUrl` @return [String]
landing_page_id[RW]
ID of the landing page for the click-through URL. Corresponds to the JSON property `landingPageId` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 4085 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 4090 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