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

Unified Diff: generated/googleapis/lib/drive/v3.dart

Issue 1797933002: Api-roll 33: 2016-03-14 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Added resources/*/CHANGELOG.md, addresssed comments Created 4 years, 9 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
« no previous file with comments | « generated/googleapis/lib/drive/v2.dart ('k') | generated/googleapis/lib/games/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/drive/v3.dart
diff --git a/generated/googleapis/lib/drive/v3.dart b/generated/googleapis/lib/drive/v3.dart
index 54dd06a9819f1e6650378cbf8b9e2342fecc2dcb..9bc90a4fc4dcdb821c60ac584142f4f810c19d91 100644
--- a/generated/googleapis/lib/drive/v3.dart
+++ b/generated/googleapis/lib/drive/v3.dart
@@ -829,7 +829,8 @@ class FilesResourceApi {
}
/**
- * Exports a Google Doc to the requested MIME type.
+ * Exports a Google Doc to the requested MIME type and returns the exported
+ * content.
*
* Request parameters:
*
@@ -2542,6 +2543,11 @@ class FileCapabilities {
/** Whether the user can edit the file's content. */
core.bool canEdit;
/**
+ * Whether the current user has read access to the Revisions resource of the
+ * file.
+ */
+ core.bool canReadRevisions;
+ /**
* Whether the user can modify the file's permissions and sharing settings.
*/
core.bool canShare;
@@ -2558,6 +2564,9 @@ class FileCapabilities {
if (_json.containsKey("canEdit")) {
canEdit = _json["canEdit"];
}
+ if (_json.containsKey("canReadRevisions")) {
+ canReadRevisions = _json["canReadRevisions"];
+ }
if (_json.containsKey("canShare")) {
canShare = _json["canShare"];
}
@@ -2574,6 +2583,9 @@ class FileCapabilities {
if (canEdit != null) {
_json["canEdit"] = canEdit;
}
+ if (canReadRevisions != null) {
+ _json["canReadRevisions"] = canReadRevisions;
+ }
if (canShare != null) {
_json["canShare"] = canShare;
}
« no previous file with comments | « generated/googleapis/lib/drive/v2.dart ('k') | generated/googleapis/lib/games/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698