class Google::Apis::DfareportingV2_1::FloodlightActivityPublisherDynamicTag

Publisher Dynamic Tag

Attributes

click_through[RW]

Whether this tag is applicable only for click-throughs. Corresponds to the JSON property `clickThrough` @return [Boolean]

click_through?[RW]

Whether this tag is applicable only for click-throughs. Corresponds to the JSON property `clickThrough` @return [Boolean]

directory_site_id[RW]

Directory site ID of this dynamic tag. This is a write-only field that can be used as an alternative to the siteId field. When this resource is retrieved, only the siteId field will be populated. Corresponds to the JSON property `directorySiteId` @return [String]

dynamic_tag[RW]

Dynamic Tag Corresponds to the JSON property `dynamicTag` @return [Google::Apis::DfareportingV2_1::FloodlightActivityDynamicTag]

site_id[RW]

Site ID of this dynamic tag. Corresponds to the JSON property `siteId` @return [String]

site_id_dimension_value[RW]

Represents a DimensionValue resource. Corresponds to the JSON property `siteIdDimensionValue` @return [Google::Apis::DfareportingV2_1::DimensionValue]

view_through[RW]

Whether this tag is applicable only for view-throughs. Corresponds to the JSON property `viewThrough` @return [Boolean]

view_through?[RW]

Whether this tag is applicable only for view-throughs. Corresponds to the JSON property `viewThrough` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/dfareporting_v2_1/classes.rb, line 5513
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 5518
def update!(**args)
  @click_through = args[:click_through] unless args[:click_through].nil?
  @directory_site_id = args[:directory_site_id] unless args[:directory_site_id].nil?
  @dynamic_tag = args[:dynamic_tag] unless args[:dynamic_tag].nil?
  @site_id = args[:site_id] unless args[:site_id].nil?
  @site_id_dimension_value = args[:site_id_dimension_value] unless args[:site_id_dimension_value].nil?
  @view_through = args[:view_through] unless args[:view_through].nil?
end