Skip to content

Commit c0b2c80

Browse files
1 parent bf41a3d commit c0b2c80

File tree

5 files changed

+114
-6
lines changed

5 files changed

+114
-6
lines changed

clients/google-api-services-drive/v3/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-drive</artifactId>
25-
<version>v3-rev20251013-2.0.0</version>
25+
<version>v3-rev20251019-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-drive:v3-rev20251013-2.0.0'
38+
implementation 'com.google.apis:google-api-services-drive:v3-rev20251019-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-drive/v3/2.0.0/com/google/api/services/drive/model/Comment.java

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@ public final class Comment extends com.google.api.client.json.GenericJson {
3939
@com.google.api.client.util.Key
4040
private java.lang.String anchor;
4141

42+
/**
43+
* Output only. The email of the user who is assigned to this comment, if none is assigned this
44+
* will be unset.
45+
* The value may be {@code null}.
46+
*/
47+
@com.google.api.client.util.Key
48+
private java.lang.String assigneeEmailAddress;
49+
4250
/**
4351
* Output only. The author of the comment. The author's email address and permission ID will not
4452
* be populated.
@@ -91,6 +99,14 @@ public final class Comment extends com.google.api.client.json.GenericJson {
9199
@com.google.api.client.util.Key
92100
private java.lang.String kind;
93101

102+
/**
103+
* Output only. The emails of the users who were mentioned in this comment, if none were mentioned
104+
* this will be an empty list.
105+
* The value may be {@code null}.
106+
*/
107+
@com.google.api.client.util.Key
108+
private java.util.List<java.lang.String> mentionedEmailAddresses;
109+
94110
/**
95111
* The last time the comment or any of its replies was modified (RFC 3339 date-time).
96112
* The value may be {@code null}.
@@ -141,6 +157,25 @@ public Comment setAnchor(java.lang.String anchor) {
141157
return this;
142158
}
143159

160+
/**
161+
* Output only. The email of the user who is assigned to this comment, if none is assigned this
162+
* will be unset.
163+
* @return value or {@code null} for none
164+
*/
165+
public java.lang.String getAssigneeEmailAddress() {
166+
return assigneeEmailAddress;
167+
}
168+
169+
/**
170+
* Output only. The email of the user who is assigned to this comment, if none is assigned this
171+
* will be unset.
172+
* @param assigneeEmailAddress assigneeEmailAddress or {@code null} for none
173+
*/
174+
public Comment setAssigneeEmailAddress(java.lang.String assigneeEmailAddress) {
175+
this.assigneeEmailAddress = assigneeEmailAddress;
176+
return this;
177+
}
178+
144179
/**
145180
* Output only. The author of the comment. The author's email address and permission ID will not
146181
* be populated.
@@ -266,6 +301,25 @@ public Comment setKind(java.lang.String kind) {
266301
return this;
267302
}
268303

304+
/**
305+
* Output only. The emails of the users who were mentioned in this comment, if none were mentioned
306+
* this will be an empty list.
307+
* @return value or {@code null} for none
308+
*/
309+
public java.util.List<java.lang.String> getMentionedEmailAddresses() {
310+
return mentionedEmailAddresses;
311+
}
312+
313+
/**
314+
* Output only. The emails of the users who were mentioned in this comment, if none were mentioned
315+
* this will be an empty list.
316+
* @param mentionedEmailAddresses mentionedEmailAddresses or {@code null} for none
317+
*/
318+
public Comment setMentionedEmailAddresses(java.util.List<java.lang.String> mentionedEmailAddresses) {
319+
this.mentionedEmailAddresses = mentionedEmailAddresses;
320+
return this;
321+
}
322+
269323
/**
270324
* The last time the comment or any of its replies was modified (RFC 3339 date-time).
271325
* @return value or {@code null} for none

clients/google-api-services-drive/v3/2.0.0/com/google/api/services/drive/model/Reply.java

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ public final class Reply extends com.google.api.client.json.GenericJson {
3737
@com.google.api.client.util.Key
3838
private java.lang.String action;
3939

40+
/**
41+
* Output only. The email of the user who is assigned to this reply, if none is assigned this will
42+
* be unset.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String assigneeEmailAddress;
47+
4048
/**
4149
* Output only. The author of the reply. The author's email address and permission ID will not be
4250
* populated.
@@ -88,6 +96,14 @@ public final class Reply extends com.google.api.client.json.GenericJson {
8896
@com.google.api.client.util.Key
8997
private java.lang.String kind;
9098

99+
/**
100+
* Output only. The emails of the users who were mentioned in this reply, if none were mentioned
101+
* this will be an empty list.
102+
* The value may be {@code null}.
103+
*/
104+
@com.google.api.client.util.Key
105+
private java.util.List<java.lang.String> mentionedEmailAddresses;
106+
91107
/**
92108
* The last time the reply was modified (RFC 3339 date-time).
93109
* The value may be {@code null}.
@@ -112,6 +128,25 @@ public Reply setAction(java.lang.String action) {
112128
return this;
113129
}
114130

131+
/**
132+
* Output only. The email of the user who is assigned to this reply, if none is assigned this will
133+
* be unset.
134+
* @return value or {@code null} for none
135+
*/
136+
public java.lang.String getAssigneeEmailAddress() {
137+
return assigneeEmailAddress;
138+
}
139+
140+
/**
141+
* Output only. The email of the user who is assigned to this reply, if none is assigned this will
142+
* be unset.
143+
* @param assigneeEmailAddress assigneeEmailAddress or {@code null} for none
144+
*/
145+
public Reply setAssigneeEmailAddress(java.lang.String assigneeEmailAddress) {
146+
this.assigneeEmailAddress = assigneeEmailAddress;
147+
return this;
148+
}
149+
115150
/**
116151
* Output only. The author of the reply. The author's email address and permission ID will not be
117152
* populated.
@@ -235,6 +270,25 @@ public Reply setKind(java.lang.String kind) {
235270
return this;
236271
}
237272

273+
/**
274+
* Output only. The emails of the users who were mentioned in this reply, if none were mentioned
275+
* this will be an empty list.
276+
* @return value or {@code null} for none
277+
*/
278+
public java.util.List<java.lang.String> getMentionedEmailAddresses() {
279+
return mentionedEmailAddresses;
280+
}
281+
282+
/**
283+
* Output only. The emails of the users who were mentioned in this reply, if none were mentioned
284+
* this will be an empty list.
285+
* @param mentionedEmailAddresses mentionedEmailAddresses or {@code null} for none
286+
*/
287+
public Reply setMentionedEmailAddresses(java.util.List<java.lang.String> mentionedEmailAddresses) {
288+
this.mentionedEmailAddresses = mentionedEmailAddresses;
289+
return this;
290+
}
291+
238292
/**
239293
* The last time the reply was modified (RFC 3339 date-time).
240294
* @return value or {@code null} for none

clients/google-api-services-drive/v3/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-drive</artifactId>
11-
<version>v3-rev20251013-2.0.0</version>
12-
<name>Google Drive API v3-rev20251013-2.0.0</name>
11+
<version>v3-rev20251019-2.0.0</version>
12+
<name>Google Drive API v3-rev20251019-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-drive/v3/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-drive</artifactId>
25-
<version>v3-rev20251013-2.0.0</version>
25+
<version>v3-rev20251019-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-drive:v3-rev20251013-2.0.0'
38+
implementation 'com.google.apis:google-api-services-drive:v3-rev20251019-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)