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

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

Issue 1268013003: Api-roll 21: 2015-08-04 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 5 years, 4 months 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/discovery/v1.dart
diff --git a/generated/googleapis/lib/discovery/v1.dart b/generated/googleapis/lib/discovery/v1.dart
index c73111f182bcebe2d789a6eaac43e3928e3934ae..44a1ed9ae965ed354012a4ed4a2bab4d7f4ae3db 100644
--- a/generated/googleapis/lib/discovery/v1.dart
+++ b/generated/googleapis/lib/discovery/v1.dart
@@ -713,6 +713,10 @@ class RestDescription {
core.String documentationLink;
/** The ETag for this response. */
core.String etag;
+ /**
+ * Enable exponential backoff for suitable methods in the generated clients.
+ */
+ core.bool exponentialBackoffDefault;
/** A list of supported features for this API. */
core.List<core.String> features;
/** Links to 16x16 and 32x32 icons representing the API. */
@@ -786,6 +790,9 @@ class RestDescription {
if (_json.containsKey("etag")) {
etag = _json["etag"];
}
+ if (_json.containsKey("exponentialBackoffDefault")) {
+ exponentialBackoffDefault = _json["exponentialBackoffDefault"];
+ }
if (_json.containsKey("features")) {
features = _json["features"];
}
@@ -874,6 +881,9 @@ class RestDescription {
if (etag != null) {
_json["etag"] = etag;
}
+ if (exponentialBackoffDefault != null) {
+ _json["exponentialBackoffDefault"] = exponentialBackoffDefault;
+ }
if (features != null) {
_json["features"] = features;
}

Powered by Google App Engine
This is Rietveld 408576698