class Google::Apis::DfareportingV2_1::ClickTag
Creative Click Tag.
Attributes
event_name[RW]
Advertiser event name associated with the click tag. This field is used by ENHANCED_BANNER, ENHANCED_IMAGE, and HTML5_BANNER creatives. Corresponds to the JSON property `eventName` @return [String]
name[RW]
Parameter name for the specified click tag. For ENHANCED_IMAGE creative assets, this field must match the value of the creative asset's creativeAssetId.name field. Corresponds to the JSON property `name` @return [String]
value[RW]
Parameter value for the specified click tag. This field contains a click- through url. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/dfareporting_v2_1/classes.rb, line 1908 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/dfareporting_v2_1/classes.rb, line 1913 def update!(**args) @event_name = args[:event_name] unless args[:event_name].nil? @name = args[:name] unless args[:name].nil? @value = args[:value] unless args[:value].nil? end