You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: discovery/drive-v3.json
+27-1Lines changed: 27 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2720,7 +2720,7 @@
2720
2720
}
2721
2721
}
2722
2722
},
2723
-
"revision": "20251013",
2723
+
"revision": "20251019",
2724
2724
"rootUrl": "https://www.googleapis.com/",
2725
2725
"schemas": {
2726
2726
"About": {
@@ -3229,6 +3229,11 @@
3229
3229
"description": "A region of the document represented as a JSON string. For details on defining anchor properties, refer to [Manage comments and replies](https://developers.google.com/workspace/drive/api/v3/manage-comments).",
3230
3230
"type": "string"
3231
3231
},
3232
+
"assigneeEmailAddress": {
3233
+
"description": "Output only. The email of the user who is assigned to this comment, if none is assigned this will be unset.",
3234
+
"readOnly": true,
3235
+
"type": "string"
3236
+
},
3232
3237
"author": {
3233
3238
"$ref": "User",
3234
3239
"description": "Output only. The author of the comment. The author's email address and permission ID will not be populated."
@@ -3265,6 +3270,14 @@
3265
3270
"description": "Output only. Identifies what kind of resource this is. Value: the fixed string `\"drive#comment\"`.",
3266
3271
"type": "string"
3267
3272
},
3273
+
"mentionedEmailAddresses": {
3274
+
"description": "Output only. The emails of the users who were mentioned in this comment, if none were mentioned this will be an empty list.",
3275
+
"items": {
3276
+
"type": "string"
3277
+
},
3278
+
"readOnly": true,
3279
+
"type": "array"
3280
+
},
3268
3281
"modifiedTime": {
3269
3282
"description": "The last time the comment or any of its replies was modified (RFC 3339 date-time).",
3270
3283
"format": "date-time",
@@ -4768,6 +4781,11 @@
4768
4781
"description": "The action the reply performed to the parent comment. Valid values are: * `resolve` * `reopen`",
4769
4782
"type": "string"
4770
4783
},
4784
+
"assigneeEmailAddress": {
4785
+
"description": "Output only. The email of the user who is assigned to this reply, if none is assigned this will be unset.",
4786
+
"readOnly": true,
4787
+
"type": "string"
4788
+
},
4771
4789
"author": {
4772
4790
"$ref": "User",
4773
4791
"description": "Output only. The author of the reply. The author's email address and permission ID will not be populated."
@@ -4803,6 +4821,14 @@
4803
4821
"description": "Output only. Identifies what kind of resource this is. Value: the fixed string `\"drive#reply\"`.",
4804
4822
"type": "string"
4805
4823
},
4824
+
"mentionedEmailAddresses": {
4825
+
"description": "Output only. The emails of the users who were mentioned in this reply, if none were mentioned this will be an empty list.",
4826
+
"items": {
4827
+
"type": "string"
4828
+
},
4829
+
"readOnly": true,
4830
+
"type": "array"
4831
+
},
4806
4832
"modifiedTime": {
4807
4833
"description": "The last time the reply was modified (RFC 3339 date-time).",
Copy file name to clipboardExpand all lines: src/apis/drive/v3.ts
+36Lines changed: 36 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -523,6 +523,10 @@ export namespace drive_v3 {
523
523
* A region of the document represented as a JSON string. For details on defining anchor properties, refer to [Manage comments and replies](https://developers.google.com/workspace/drive/api/v3/manage-comments).
524
524
*/
525
525
anchor?: string|null;
526
+
/**
527
+
* Output only. The email of the user who is assigned to this comment, if none is assigned this will be unset.
528
+
*/
529
+
assigneeEmailAddress?: string|null;
526
530
/**
527
531
* Output only. The author of the comment. The author's email address and permission ID will not be populated.
528
532
*/
@@ -551,6 +555,10 @@ export namespace drive_v3 {
551
555
* Output only. Identifies what kind of resource this is. Value: the fixed string `"drive#comment"`.
552
556
*/
553
557
kind?: string|null;
558
+
/**
559
+
* Output only. The emails of the users who were mentioned in this comment, if none were mentioned this will be an empty list.
560
+
*/
561
+
mentionedEmailAddresses?: string[]|null;
554
562
/**
555
563
* The last time the comment or any of its replies was modified (RFC 3339 date-time).
0 commit comments