Show / Hide Table of Contents

Class ContainerVersion

Represents a Google Tag Manager Container Version.

Inheritance
System.Object
ContainerVersion
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 ContainerVersion : IDirectResponseSchema

Properties

AccountId

GTM Account ID.

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

BuiltInVariable

The built-in variables in the container that this version was taken from.

Declaration
[JsonProperty("builtInVariable")]
public virtual IList<BuiltInVariable> BuiltInVariable { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<BuiltInVariable>

Container

The container that this version was taken from.

Declaration
[JsonProperty("container")]
public virtual Container Container { get; set; }
Property Value
Type Description
Container

ContainerId

GTM Container ID.

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

ContainerVersionId

The Container Version ID uniquely identifies the GTM Container Version.

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

CustomTemplate

The custom templates in the container that this version was taken from.

Declaration
[JsonProperty("customTemplate")]
public virtual IList<CustomTemplate> CustomTemplate { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<CustomTemplate>

Deleted

A value of true indicates this container version has been deleted.

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

Description

Container version description.

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

ETag

The ETag of the item.

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

Fingerprint

The fingerprint of the GTM Container Version as computed at storage time. This value is recomputed whenever the container version is modified.

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

Folder

The folders in the container that this version was taken from.

Declaration
[JsonProperty("folder")]
public virtual IList<Folder> Folder { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Folder>

Name

Container version display name.

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

Path

GTM ContainerVersions's API relative path.

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

Tag

The tags in the container that this version was taken from.

Declaration
[JsonProperty("tag")]
public virtual IList<Tag> Tag { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Tag>

TagManagerUrl

Auto generated link to the tag manager UI

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

Trigger

The triggers in the container that this version was taken from.

Declaration
[JsonProperty("trigger")]
public virtual IList<Trigger> Trigger { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Trigger>

Variable

The variables in the container that this version was taken from.

Declaration
[JsonProperty("variable")]
public virtual IList<Variable> Variable { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Variable>

Zone

The zones in the container that this version was taken from.

Declaration
[JsonProperty("zone")]
public virtual IList<Zone> Zone { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Zone>

Implements

IDirectResponseSchema
Back to top