class Google::Apis::DfareportingV3_4::ClickTag
Creative
Click Tag.
Attributes
click_through_url[RW]
Click-through URL Corresponds to the JSON property `clickThroughUrl` @return [Google::Apis::DfareportingV3_4::CreativeClickThroughUrl]
event_name[RW]
Advertiser
event name associated with the click tag. This field is used by DISPLAY_IMAGE_GALLERY and HTML5_BANNER creatives. Applicable to DISPLAY when the primary asset type is not HTML_IMAGE. Corresponds to the JSON property `eventName` @return [String]
name[RW]
Parameter name for the specified click tag. For DISPLAY_IMAGE_GALLERY creative assets, this field must match the value of the creative asset's creativeAssetId.name field. Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 2063 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 2068 def update!(**args) @click_through_url = args[:click_through_url] if args.key?(:click_through_url) @event_name = args[:event_name] if args.key?(:event_name) @name = args[:name] if args.key?(:name) end