class Google::Apis::DfareportingV2_1::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_1/classes.rb, line 10078
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 10083
def update!(**args)
  @ad_id = args[:ad_id] unless args[:ad_id].nil?
  @click_tag = args[:click_tag] unless args[:click_tag].nil?
  @creative_id = args[:creative_id] unless args[:creative_id].nil?
  @format = args[:format] unless args[:format].nil?
  @impression_tag = args[:impression_tag] unless args[:impression_tag].nil?
end