Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Unified Diff: generated/googleapis/lib/tagmanager/v1.dart

Issue 770773002: Api roll 7: 2014-12-01 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « generated/googleapis/lib/src/common_internal.dart ('k') | generated/googleapis/lib/youtube/v3.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « generated/googleapis/lib/src/common_internal.dart ('k') | generated/googleapis/lib/youtube/v3.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698