| 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;
|
| }
|
|
|