class Google::Apis::DfareportingV2_3::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_3/classes.rb, line 1923
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_3/classes.rb, line 1928
def update!(**args)
  @event_name = args[:event_name] if args.key?(:event_name)
  @name = args[:name] if args.key?(:name)
  @value = args[:value] if args.key?(:value)
end