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

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

Issue 2485703002: Api-roll 42: 2016-11-08 (Closed)
Patch Set: Created 4 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
« no previous file with comments | « generated/googleapis/lib/appengine/v1.dart ('k') | generated/googleapis/lib/bigquery/v2.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/appsactivity/v1.dart
diff --git a/generated/googleapis/lib/appsactivity/v1.dart b/generated/googleapis/lib/appsactivity/v1.dart
index 76b54b605facb8a78f500a626aa23690e3b40a75..38bdfab3438e0d4b1ca01a9159fb90ee3dab99e6 100644
--- a/generated/googleapis/lib/appsactivity/v1.dart
+++ b/generated/googleapis/lib/appsactivity/v1.dart
@@ -612,6 +612,8 @@ class User {
* name, photo and permission_id will be omitted.
*/
core.bool isDeleted;
+ /** Whether the user is the authenticated user. */
+ core.bool isMe;
/** The displayable name of the user. */
core.String name;
/**
@@ -632,6 +634,9 @@ class User {
if (_json.containsKey("isDeleted")) {
isDeleted = _json["isDeleted"];
}
+ if (_json.containsKey("isMe")) {
+ isMe = _json["isMe"];
+ }
if (_json.containsKey("name")) {
name = _json["name"];
}
@@ -648,6 +653,9 @@ class User {
if (isDeleted != null) {
_json["isDeleted"] = isDeleted;
}
+ if (isMe != null) {
+ _json["isMe"] = isMe;
+ }
if (name != null) {
_json["name"] = name;
}
« no previous file with comments | « generated/googleapis/lib/appengine/v1.dart ('k') | generated/googleapis/lib/bigquery/v2.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698