class Google::Apis::DfareportingV2_3::TagData
Placement Tag Data
Attributes
ad_id[RW]
Ad associated with this placement tag. Corresponds to the JSON property `adId` @return [String]
click_tag[RW]
Tag string to record a click. Corresponds to the JSON property `clickTag` @return [String]
creative_id[RW]
Creative associated with this placement tag. Corresponds to the JSON property `creativeId` @return [String]
format[RW]
TagData tag format of this tag. Corresponds to the JSON property `format` @return [String]
impression_tag[RW]
Tag string for serving an ad. Corresponds to the JSON property `impressionTag` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/dfareporting_v2_3/classes.rb, line 10112 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 10117 def update!(**args) @ad_id = args[:ad_id] if args.key?(:ad_id) @click_tag = args[:click_tag] if args.key?(:click_tag) @creative_id = args[:creative_id] if args.key?(:creative_id) @format = args[:format] if args.key?(:format) @impression_tag = args[:impression_tag] if args.key?(:impression_tag) end