Skip to content

Commit 6929d91

Browse files
1 parent 5777394 commit 6929d91

File tree

4 files changed

+33
-6
lines changed

4 files changed

+33
-6
lines changed

clients/google-api-services-classroom/v1/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-classroom</artifactId>
25-
<version>v1-rev20260111-2.0.0</version>
25+
<version>v1-rev20260308-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-classroom:v1-rev20260111-2.0.0'
38+
implementation 'com.google.apis:google-api-services-classroom:v1-rev20260308-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-classroom/v1/2.0.0/com/google/api/services/classroom/model/AddOnAttachmentStudentSubmission.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,14 @@ public final class AddOnAttachmentStudentSubmission extends com.google.api.clien
4343
@com.google.api.client.util.Key
4444
private java.lang.String postSubmissionState;
4545

46+
/**
47+
* Identifier for the student that owns this submission. Requires the user to be a teacher in the
48+
* course and have permission to read student submissions.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String userId;
53+
4654
/**
4755
* Student grade on this attachment. If unset, no grade was set.
4856
* @return value or {@code null} for none
@@ -77,6 +85,25 @@ public AddOnAttachmentStudentSubmission setPostSubmissionState(java.lang.String
7785
return this;
7886
}
7987

88+
/**
89+
* Identifier for the student that owns this submission. Requires the user to be a teacher in the
90+
* course and have permission to read student submissions.
91+
* @return value or {@code null} for none
92+
*/
93+
public java.lang.String getUserId() {
94+
return userId;
95+
}
96+
97+
/**
98+
* Identifier for the student that owns this submission. Requires the user to be a teacher in the
99+
* course and have permission to read student submissions.
100+
* @param userId userId or {@code null} for none
101+
*/
102+
public AddOnAttachmentStudentSubmission setUserId(java.lang.String userId) {
103+
this.userId = userId;
104+
return this;
105+
}
106+
80107
@Override
81108
public AddOnAttachmentStudentSubmission set(String fieldName, Object value) {
82109
return (AddOnAttachmentStudentSubmission) super.set(fieldName, value);

clients/google-api-services-classroom/v1/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-classroom</artifactId>
11-
<version>v1-rev20260111-2.0.0</version>
12-
<name>Google Classroom API v1-rev20260111-2.0.0</name>
11+
<version>v1-rev20260308-2.0.0</version>
12+
<name>Google Classroom API v1-rev20260308-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-classroom/v1/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-classroom</artifactId>
25-
<version>v1-rev20260111-2.0.0</version>
25+
<version>v1-rev20260308-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-classroom:v1-rev20260111-2.0.0'
38+
implementation 'com.google.apis:google-api-services-classroom:v1-rev20260308-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)