class Google::Apis::DfareportingV3_4::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 [Fixnum]

dynamic_tag[RW]

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

site_id[RW]

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

site_id_dimension_value[RW]

Represents a DimensionValue resource. Corresponds to the JSON property `siteIdDimensionValue` @return [Google::Apis::DfareportingV3_4::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 lib/google/apis/dfareporting_v3_4/classes.rb, line 6763
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dfareporting_v3_4/classes.rb, line 6768
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