Class: Google::Apis::DfareportingV2_1::DefaultClickThroughEventTagProperties
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_1::DefaultClickThroughEventTagProperties
- Includes:
- Core::Hashable
- Defined in:
- generated/google/apis/dfareporting_v2_1/classes.rb,
generated/google/apis/dfareporting_v2_1/representations.rb,
generated/google/apis/dfareporting_v2_1/representations.rb
Overview
Properties of inheriting and overriding the default click-through event tag. A campaign may override the event tag defined at the advertiser level, and an ad may also override the campaign's setting further.
Instance Attribute Summary collapse
-
#default_click_through_event_tag_id ⇒ String
ID of the click-through event tag to apply to all ads in this entity's scope.
-
#override_inherited_event_tag ⇒ Boolean
(also: #override_inherited_event_tag?)
Whether this entity should override the inherited default click-through event tag with its own defined value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DefaultClickThroughEventTagProperties
constructor
A new instance of DefaultClickThroughEventTagProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DefaultClickThroughEventTagProperties
Returns a new instance of DefaultClickThroughEventTagProperties.
3994 3995 3996 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 3994 def initialize(**args) update!(**args) end |
Instance Attribute Details
#default_click_through_event_tag_id ⇒ String
ID of the click-through event tag to apply to all ads in this entity's scope.
Corresponds to the JSON property defaultClickThroughEventTagId
3985 3986 3987 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 3985 def default_click_through_event_tag_id @default_click_through_event_tag_id end |
#override_inherited_event_tag ⇒ Boolean Also known as: override_inherited_event_tag?
Whether this entity should override the inherited default click-through event
tag with its own defined value.
Corresponds to the JSON property overrideInheritedEventTag
3991 3992 3993 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 3991 def override_inherited_event_tag @override_inherited_event_tag end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3999 4000 4001 4002 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 3999 def update!(**args) @default_click_through_event_tag_id = args[:default_click_through_event_tag_id] unless args[:default_click_through_event_tag_id].nil? @override_inherited_event_tag = args[:override_inherited_event_tag] unless args[:override_inherited_event_tag].nil? end |