class Google::Apis::DfareportingV2_3::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_3::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_3::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_3/classes.rb, line 5574
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 5579
def update!(**args)
  @click_through = args[:click_through] if args.key?(:click_through)
  @directory_site_id = args[:directory_site_id] if args.key?(:directory_site_id)
  @dynamic_tag = args[:dynamic_tag] if args.key?(:dynamic_tag)
  @site_id = args[:site_id] if args.key?(:site_id)
  @site_id_dimension_value = args[:site_id_dimension_value] if args.key?(:site_id_dimension_value)
  @view_through = args[:view_through] if args.key?(:view_through)
end