Class: Google::Apis::TagmanagerV2::SetupTag
- Inherits:
-
Object
- Object
- Google::Apis::TagmanagerV2::SetupTag
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/tagmanager_v2/classes.rb,
generated/google/apis/tagmanager_v2/representations.rb,
generated/google/apis/tagmanager_v2/representations.rb
Overview
Represents a reference to atag that fires before another tag in order to set up dependencies.
Instance Attribute Summary collapse
-
#stop_on_setup_failure ⇒ Boolean
(also: #stop_on_setup_failure?)
If true, fire the main tag if and only if the setup tag fires successfully.
-
#tag_name ⇒ String
The name of the setup tag.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SetupTag
constructor
A new instance of SetupTag.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SetupTag
Returns a new instance of SetupTag
1551 1552 1553 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1551 def initialize(**args) update!(**args) end |
Instance Attribute Details
#stop_on_setup_failure ⇒ Boolean Also known as: stop_on_setup_failure?
If true, fire the main tag if and only if the setup tag fires successfully. If
false, fire the main tag regardless of setup tag firing status.
Corresponds to the JSON property stopOnSetupFailure
1543 1544 1545 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1543 def stop_on_setup_failure @stop_on_setup_failure end |
#tag_name ⇒ String
The name of the setup tag.
Corresponds to the JSON property tagName
1549 1550 1551 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1549 def tag_name @tag_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1556 1557 1558 1559 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1556 def update!(**args) @stop_on_setup_failure = args[:stop_on_setup_failure] if args.key?(:stop_on_setup_failure) @tag_name = args[:tag_name] if args.key?(:tag_name) end |