Show / Hide Table of Contents

Class SetupTag

Represents a reference to atag that fires before another tag in order to set up dependencies.

Inheritance
System.Object
SetupTag
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.TagManager.v2.Data
Assembly: Google.Apis.TagManager.v2.dll
Syntax
public class SetupTag : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

StopOnSetupFailure

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.

Declaration
[JsonProperty("stopOnSetupFailure")]
public virtual bool? StopOnSetupFailure { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

TagName

The name of the setup tag.

Declaration
[JsonProperty("tagName")]
public virtual string TagName { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top