Skip to content

Commit 770bb25

Browse files
1 parent 596b1bb commit 770bb25

File tree

4 files changed

+33
-6
lines changed

4 files changed

+33
-6
lines changed

clients/google-api-services-calendar/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-calendar</artifactId>
25-
<version>v3-rev20251123-2.0.0</version>
25+
<version>v3-rev20251207-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-calendar:v3-rev20251123-2.0.0'
38+
implementation 'com.google.apis:google-api-services-calendar:v3-rev20251207-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-calendar/v3/2.0.0/com/google/api/services/calendar/model/CalendarListEntry.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,14 @@ public final class CalendarListEntry extends com.google.api.client.json.GenericJ
4444
@com.google.api.client.util.Key
4545
private java.lang.String accessRole;
4646

47+
/**
48+
* Whether this calendar automatically accepts invitations. Only valid for resource calendars.
49+
* Read-only.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.Boolean autoAcceptInvitations;
54+
4755
/**
4856
* The main color of the calendar in the hexadecimal format "#0088aa". This property supersedes
4957
* the index-based colorId property. To set or change this property, you need to specify
@@ -220,6 +228,25 @@ public CalendarListEntry setAccessRole(java.lang.String accessRole) {
220228
return this;
221229
}
222230

231+
/**
232+
* Whether this calendar automatically accepts invitations. Only valid for resource calendars.
233+
* Read-only.
234+
* @return value or {@code null} for none
235+
*/
236+
public java.lang.Boolean getAutoAcceptInvitations() {
237+
return autoAcceptInvitations;
238+
}
239+
240+
/**
241+
* Whether this calendar automatically accepts invitations. Only valid for resource calendars.
242+
* Read-only.
243+
* @param autoAcceptInvitations autoAcceptInvitations or {@code null} for none
244+
*/
245+
public CalendarListEntry setAutoAcceptInvitations(java.lang.Boolean autoAcceptInvitations) {
246+
this.autoAcceptInvitations = autoAcceptInvitations;
247+
return this;
248+
}
249+
223250
/**
224251
* The main color of the calendar in the hexadecimal format "#0088aa". This property supersedes
225252
* the index-based colorId property. To set or change this property, you need to specify

clients/google-api-services-calendar/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-calendar</artifactId>
11-
<version>v3-rev20251123-2.0.0</version>
12-
<name>Calendar API v3-rev20251123-2.0.0</name>
11+
<version>v3-rev20251207-2.0.0</version>
12+
<name>Calendar API v3-rev20251207-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-calendar/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-calendar</artifactId>
25-
<version>v3-rev20251123-2.0.0</version>
25+
<version>v3-rev20251207-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-calendar:v3-rev20251123-2.0.0'
38+
implementation 'com.google.apis:google-api-services-calendar:v3-rev20251207-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)