File tree Expand file tree Collapse file tree 4 files changed +14
-6
lines changed
clients/google-api-services-classroom/v1
com/google/api/services/classroom Expand file tree Collapse file tree 4 files changed +14
-6
lines changed Original file line number Diff line number Diff 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-classroom</artifactId >
25- <version >v1-rev20250111 -2.0.0</version >
25+ <version >v1-rev20250114 -2.0.0</version >
2626 </dependency >
2727 </dependencies >
2828</project >
@@ -35,7 +35,7 @@ repositories {
3535 mavenCentral()
3636}
3737dependencies {
38- implementation 'com.google.apis:google-api-services-classroom:v1-rev20250111 -2.0.0'
38+ implementation 'com.google.apis:google-api-services-classroom:v1-rev20250114 -2.0.0'
3939}
4040```
4141
Original file line number Diff line number Diff line change 2323 */
2424public class ClassroomScopes {
2525
26+ /** See and update its own attachments to posts in Google Classroom. */
27+ public static final String CLASSROOM_ADDONS_STUDENT = "https://www.googleapis.com/auth/classroom.addons.student" ;
28+
29+ /** See, create, and update its own attachments to posts in classes you teach in Google Classroom. */
30+ public static final String CLASSROOM_ADDONS_TEACHER = "https://www.googleapis.com/auth/classroom.addons.teacher" ;
31+
2632 /** View and manage announcements in Google Classroom. */
2733 public static final String CLASSROOM_ANNOUNCEMENTS = "https://www.googleapis.com/auth/classroom.announcements" ;
2834
@@ -96,6 +102,8 @@ public class ClassroomScopes {
96102 */
97103 public static java .util .Set <String > all () {
98104 java .util .Set <String > set = new java .util .HashSet <String >();
105+ set .add (CLASSROOM_ADDONS_STUDENT );
106+ set .add (CLASSROOM_ADDONS_TEACHER );
99107 set .add (CLASSROOM_ANNOUNCEMENTS );
100108 set .add (CLASSROOM_ANNOUNCEMENTS_READONLY );
101109 set .add (CLASSROOM_COURSES );
Original file line number Diff line number Diff line change 88
99 <groupId >com.google.apis</groupId >
1010 <artifactId >google-api-services-classroom</artifactId >
11- <version >v1-rev20250111 -2.0.0</version >
12- <name >Google Classroom API v1-rev20250111 -2.0.0</name >
11+ <version >v1-rev20250114 -2.0.0</version >
12+ <name >Google Classroom API v1-rev20250114 -2.0.0</name >
1313 <packaging >jar</packaging >
1414
1515 <inceptionYear >2011</inceptionYear >
Original file line number Diff line number Diff 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-classroom</artifactId >
25- <version >v1-rev20250111 -2.0.0</version >
25+ <version >v1-rev20250114 -2.0.0</version >
2626 </dependency >
2727 </dependencies >
2828</project >
@@ -35,7 +35,7 @@ repositories {
3535 mavenCentral()
3636}
3737dependencies {
38- implementation 'com.google.apis:google-api-services-classroom:v1-rev20250111 -2.0.0'
38+ implementation 'com.google.apis:google-api-services-classroom:v1-rev20250114 -2.0.0'
3939}
4040```
4141
You can’t perform that action at this time.
0 commit comments