Index: generated/googleapis/lib/tagmanager/v1.dart |
diff --git a/generated/googleapis/lib/tagmanager/v1.dart b/generated/googleapis/lib/tagmanager/v1.dart |
index 3a7bad0505a5358029a65eeb9591ba142deb2337..f0ff982925740168619c44f15c7605a146190545 100644 |
--- a/generated/googleapis/lib/tagmanager/v1.dart |
+++ b/generated/googleapis/lib/tagmanager/v1.dart |
@@ -2572,6 +2572,9 @@ class Container { |
/** Optional list of domain names associated with the Container. */ |
core.List<core.String> domainName; |
+ /** List of enabled built-in variables. */ |
+ core.List<core.String> enabledBuiltInVariable; |
+ |
/** |
* The fingerprint of the GTM Container as computed at storage time. This |
* value is recomputed whenever the account is modified. |
@@ -2612,6 +2615,9 @@ class Container { |
if (_json.containsKey("domainName")) { |
domainName = _json["domainName"]; |
} |
+ if (_json.containsKey("enabledBuiltInVariable")) { |
+ enabledBuiltInVariable = _json["enabledBuiltInVariable"]; |
+ } |
if (_json.containsKey("fingerprint")) { |
fingerprint = _json["fingerprint"]; |
} |
@@ -2646,6 +2652,9 @@ class Container { |
if (domainName != null) { |
_json["domainName"] = domainName; |
} |
+ if (enabledBuiltInVariable != null) { |
+ _json["enabledBuiltInVariable"] = enabledBuiltInVariable; |
+ } |
if (fingerprint != null) { |
_json["fingerprint"] = fingerprint; |
} |
@@ -3606,13 +3615,6 @@ class Tag { |
core.String containerId; |
/** |
- * An optional list of tag names that this tag depends on to fire. Execution |
- * of this tag will be prevented until the tags with the given names complete |
- * their execution. |
- */ |
- Parameter dependencies; |
- |
- /** |
* The fingerprint of the GTM Tag as computed at storage time. This value is |
* recomputed whenever the tag is modified. |
*/ |
@@ -3680,9 +3682,6 @@ class Tag { |
if (_json.containsKey("containerId")) { |
containerId = _json["containerId"]; |
} |
- if (_json.containsKey("dependencies")) { |
- dependencies = new Parameter.fromJson(_json["dependencies"]); |
- } |
if (_json.containsKey("fingerprint")) { |
fingerprint = _json["fingerprint"]; |
} |
@@ -3735,9 +3734,6 @@ class Tag { |
if (containerId != null) { |
_json["containerId"] = containerId; |
} |
- if (dependencies != null) { |
- _json["dependencies"] = (dependencies).toJson(); |
- } |
if (fingerprint != null) { |
_json["fingerprint"] = fingerprint; |
} |