Skip to content

Commit 5051163

Browse files
1 parent 404529f commit 5051163

File tree

10 files changed

+1955
-6
lines changed

10 files changed

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

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

Lines changed: 1146 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.classroom.model;
18+
19+
/**
20+
* A rubric criterion. Each criterion is a dimension on which performance is rated.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Google Classroom API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class Criterion extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The description of the criterion.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String description;
38+
39+
/**
40+
* The criterion ID. On creation, an ID is assigned.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String id;
45+
46+
/**
47+
* The list of levels within this criterion.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.util.List<Level> levels;
52+
53+
/**
54+
* The title of the criterion.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.lang.String title;
59+
60+
/**
61+
* The description of the criterion.
62+
* @return value or {@code null} for none
63+
*/
64+
public java.lang.String getDescription() {
65+
return description;
66+
}
67+
68+
/**
69+
* The description of the criterion.
70+
* @param description description or {@code null} for none
71+
*/
72+
public Criterion setDescription(java.lang.String description) {
73+
this.description = description;
74+
return this;
75+
}
76+
77+
/**
78+
* The criterion ID. On creation, an ID is assigned.
79+
* @return value or {@code null} for none
80+
*/
81+
public java.lang.String getId() {
82+
return id;
83+
}
84+
85+
/**
86+
* The criterion ID. On creation, an ID is assigned.
87+
* @param id id or {@code null} for none
88+
*/
89+
public Criterion setId(java.lang.String id) {
90+
this.id = id;
91+
return this;
92+
}
93+
94+
/**
95+
* The list of levels within this criterion.
96+
* @return value or {@code null} for none
97+
*/
98+
public java.util.List<Level> getLevels() {
99+
return levels;
100+
}
101+
102+
/**
103+
* The list of levels within this criterion.
104+
* @param levels levels or {@code null} for none
105+
*/
106+
public Criterion setLevels(java.util.List<Level> levels) {
107+
this.levels = levels;
108+
return this;
109+
}
110+
111+
/**
112+
* The title of the criterion.
113+
* @return value or {@code null} for none
114+
*/
115+
public java.lang.String getTitle() {
116+
return title;
117+
}
118+
119+
/**
120+
* The title of the criterion.
121+
* @param title title or {@code null} for none
122+
*/
123+
public Criterion setTitle(java.lang.String title) {
124+
this.title = title;
125+
return this;
126+
}
127+
128+
@Override
129+
public Criterion set(String fieldName, Object value) {
130+
return (Criterion) super.set(fieldName, value);
131+
}
132+
133+
@Override
134+
public Criterion clone() {
135+
return (Criterion) super.clone();
136+
}
137+
138+
}
Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.classroom.model;
18+
19+
/**
20+
* A level of the criterion.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Google Classroom API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class Level extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The description of the level.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String description;
38+
39+
/**
40+
* The level ID. On creation, an ID is assigned.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String id;
45+
46+
/**
47+
* Optional points associated with this level. If set, all levels within the rubric must specify
48+
* points and the value must be distinct across all levels within a single criterion. 0 is
49+
* distinct from no points.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.Double points;
54+
55+
/**
56+
* The title of the level. If the level has no points set, title must be set.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private java.lang.String title;
61+
62+
/**
63+
* The description of the level.
64+
* @return value or {@code null} for none
65+
*/
66+
public java.lang.String getDescription() {
67+
return description;
68+
}
69+
70+
/**
71+
* The description of the level.
72+
* @param description description or {@code null} for none
73+
*/
74+
public Level setDescription(java.lang.String description) {
75+
this.description = description;
76+
return this;
77+
}
78+
79+
/**
80+
* The level ID. On creation, an ID is assigned.
81+
* @return value or {@code null} for none
82+
*/
83+
public java.lang.String getId() {
84+
return id;
85+
}
86+
87+
/**
88+
* The level ID. On creation, an ID is assigned.
89+
* @param id id or {@code null} for none
90+
*/
91+
public Level setId(java.lang.String id) {
92+
this.id = id;
93+
return this;
94+
}
95+
96+
/**
97+
* Optional points associated with this level. If set, all levels within the rubric must specify
98+
* points and the value must be distinct across all levels within a single criterion. 0 is
99+
* distinct from no points.
100+
* @return value or {@code null} for none
101+
*/
102+
public java.lang.Double getPoints() {
103+
return points;
104+
}
105+
106+
/**
107+
* Optional points associated with this level. If set, all levels within the rubric must specify
108+
* points and the value must be distinct across all levels within a single criterion. 0 is
109+
* distinct from no points.
110+
* @param points points or {@code null} for none
111+
*/
112+
public Level setPoints(java.lang.Double points) {
113+
this.points = points;
114+
return this;
115+
}
116+
117+
/**
118+
* The title of the level. If the level has no points set, title must be set.
119+
* @return value or {@code null} for none
120+
*/
121+
public java.lang.String getTitle() {
122+
return title;
123+
}
124+
125+
/**
126+
* The title of the level. If the level has no points set, title must be set.
127+
* @param title title or {@code null} for none
128+
*/
129+
public Level setTitle(java.lang.String title) {
130+
this.title = title;
131+
return this;
132+
}
133+
134+
@Override
135+
public Level set(String fieldName, Object value) {
136+
return (Level) super.set(fieldName, value);
137+
}
138+
139+
@Override
140+
public Level clone() {
141+
return (Level) super.clone();
142+
}
143+
144+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.classroom.model;
18+
19+
/**
20+
* Response when listing rubrics.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Google Classroom API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class ListRubricsResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Token identifying the next page of results to return. If empty, no further results are
34+
* available.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String nextPageToken;
39+
40+
/**
41+
* Rubrics that match the request.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<Rubric> rubrics;
46+
47+
/**
48+
* Token identifying the next page of results to return. If empty, no further results are
49+
* available.
50+
* @return value or {@code null} for none
51+
*/
52+
public java.lang.String getNextPageToken() {
53+
return nextPageToken;
54+
}
55+
56+
/**
57+
* Token identifying the next page of results to return. If empty, no further results are
58+
* available.
59+
* @param nextPageToken nextPageToken or {@code null} for none
60+
*/
61+
public ListRubricsResponse setNextPageToken(java.lang.String nextPageToken) {
62+
this.nextPageToken = nextPageToken;
63+
return this;
64+
}
65+
66+
/**
67+
* Rubrics that match the request.
68+
* @return value or {@code null} for none
69+
*/
70+
public java.util.List<Rubric> getRubrics() {
71+
return rubrics;
72+
}
73+
74+
/**
75+
* Rubrics that match the request.
76+
* @param rubrics rubrics or {@code null} for none
77+
*/
78+
public ListRubricsResponse setRubrics(java.util.List<Rubric> rubrics) {
79+
this.rubrics = rubrics;
80+
return this;
81+
}
82+
83+
@Override
84+
public ListRubricsResponse set(String fieldName, Object value) {
85+
return (ListRubricsResponse) super.set(fieldName, value);
86+
}
87+
88+
@Override
89+
public ListRubricsResponse clone() {
90+
return (ListRubricsResponse) super.clone();
91+
}
92+
93+
}

0 commit comments

Comments
 (0)