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

Unified Diff: generated/googleapis/lib/adexchangebuyer/v1_3.dart

Issue 698403003: Api roll 5: 2014-11-05 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years, 1 month 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
Index: generated/googleapis/lib/adexchangebuyer/v1_3.dart
diff --git a/generated/googleapis/lib/adexchangebuyer/v1_3.dart b/generated/googleapis/lib/adexchangebuyer/v1_3.dart
index 12b503547e6e388edf77016f9234360045ff717b..d88bc8810b38d99d73428497206c6a826658b34c 100644
--- a/generated/googleapis/lib/adexchangebuyer/v1_3.dart
+++ b/generated/googleapis/lib/adexchangebuyer/v1_3.dart
@@ -986,11 +986,24 @@ class Account {
core.String kind;
/**
+ * The maximum number of active creatives that an account can have, where a
+ * creative is active if it was inserted or bid with in the last 30 days.
+ * Please contact your technical account manager if you need to change this.
+ */
+ core.int maximumActiveCreatives;
+
+ /**
* The sum of all bidderLocation.maximumQps values cannot exceed this. Please
* contact your technical account manager if you need to change this.
*/
core.int maximumTotalQps;
+ /**
+ * The number of creatives that this account inserted or bid with in the last
+ * 30 days.
+ */
+ core.int numberActiveCreatives;
+
Account();
@@ -1010,9 +1023,15 @@ class Account {
if (_json.containsKey("kind")) {
kind = _json["kind"];
}
+ if (_json.containsKey("maximumActiveCreatives")) {
+ maximumActiveCreatives = _json["maximumActiveCreatives"];
+ }
if (_json.containsKey("maximumTotalQps")) {
maximumTotalQps = _json["maximumTotalQps"];
}
+ if (_json.containsKey("numberActiveCreatives")) {
+ numberActiveCreatives = _json["numberActiveCreatives"];
+ }
}
core.Map toJson() {
@@ -1032,9 +1051,15 @@ class Account {
if (kind != null) {
_json["kind"] = kind;
}
+ if (maximumActiveCreatives != null) {
+ _json["maximumActiveCreatives"] = maximumActiveCreatives;
+ }
if (maximumTotalQps != null) {
_json["maximumTotalQps"] = maximumTotalQps;
}
+ if (numberActiveCreatives != null) {
+ _json["numberActiveCreatives"] = numberActiveCreatives;
+ }
return _json;
}
}

Powered by Google App Engine
This is Rietveld 408576698