Class: Google::Apis::DfareportingV2_3::FloodlightActivityPublisherDynamicTag
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_3::FloodlightActivityPublisherDynamicTag
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_3/classes.rb,
generated/google/apis/dfareporting_v2_3/representations.rb,
generated/google/apis/dfareporting_v2_3/representations.rb
Overview
Publisher Dynamic Tag
Instance Attribute Summary collapse
-
#click_through ⇒ Boolean
(also: #click_through?)
Whether this tag is applicable only for click-throughs.
-
#directory_site_id ⇒ String
Directory site ID of this dynamic tag.
-
#dynamic_tag ⇒ Google::Apis::DfareportingV2_3::FloodlightActivityDynamicTag
Dynamic Tag Corresponds to the JSON property
dynamicTag
. -
#site_id ⇒ String
Site ID of this dynamic tag.
-
#site_id_dimension_value ⇒ Google::Apis::DfareportingV2_3::DimensionValue
Represents a DimensionValue resource.
-
#view_through ⇒ Boolean
(also: #view_through?)
Whether this tag is applicable only for view-throughs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FloodlightActivityPublisherDynamicTag
constructor
A new instance of FloodlightActivityPublisherDynamicTag.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ FloodlightActivityPublisherDynamicTag
Returns a new instance of FloodlightActivityPublisherDynamicTag.
5583 5584 5585 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5583 def initialize(**args) update!(**args) end |
Instance Attribute Details
#click_through ⇒ Boolean Also known as: click_through?
Whether this tag is applicable only for click-throughs.
Corresponds to the JSON property clickThrough
5552 5553 5554 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5552 def click_through @click_through end |
#directory_site_id ⇒ String
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
5560 5561 5562 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5560 def directory_site_id @directory_site_id end |
#dynamic_tag ⇒ Google::Apis::DfareportingV2_3::FloodlightActivityDynamicTag
Dynamic Tag
Corresponds to the JSON property dynamicTag
5565 5566 5567 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5565 def dynamic_tag @dynamic_tag end |
#site_id ⇒ String
Site ID of this dynamic tag.
Corresponds to the JSON property siteId
5570 5571 5572 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5570 def site_id @site_id end |
#site_id_dimension_value ⇒ Google::Apis::DfareportingV2_3::DimensionValue
Represents a DimensionValue resource.
Corresponds to the JSON property siteIdDimensionValue
5575 5576 5577 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5575 def site_id_dimension_value @site_id_dimension_value end |
#view_through ⇒ Boolean Also known as: view_through?
Whether this tag is applicable only for view-throughs.
Corresponds to the JSON property viewThrough
5580 5581 5582 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5580 def view_through @view_through end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5588 5589 5590 5591 5592 5593 5594 5595 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5588 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 |