google-apis-classroom_v1 0.31.0 → 0.33.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5d6c1ce571b0fd2cba57676114ea5432bb0da842053376fd656b1b374e6a39aa
4
- data.tar.gz: e8205fe1066f0d70b74ae4be4b37415cc2f37f00ab3db97005771cef212c48fd
3
+ metadata.gz: 92703c8d3b6c2d869028f3689ec05f7cc271b72aa89469826c8242848f2843b7
4
+ data.tar.gz: '08cee27e3fafb8d1860d99218cd326d67a0bdc980cf070b5f1c57132a02d6b4d'
5
5
  SHA512:
6
- metadata.gz: 3a627bc13831a796a63e0f6e354611aef1b702d2251f029958c90806c1d8c15234eaa9f138c396069fa0a47766d774be9848c6f72e666e92e256ca6d1a2ee967
7
- data.tar.gz: 99a8e9d89e84c3d81be9de64aedceabeeff2e87d9c907702563bc75410985128f8d1a4e5cd788b7dec6372d81679491d63aab76705504d8aba03d3eb197f966c
6
+ metadata.gz: '094541ddb48afb59695d1a8f4e257929e43aed93f05f8e24d77e99a5e3e14737af5531a337ce871d95b4431179ee0a7ef98f476d44d25fbf7f2eb5020ff750a7'
7
+ data.tar.gz: 861c1d377b953d18976202da0306f001757bd749073dfa2822e2d0dbe3cb602a9fe66659d07f3b362de8de43cbef922862cc98f9f60c80d4f542c6738481d57b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-classroom_v1
2
2
 
3
+ ### v0.33.0 (2024-06-30)
4
+
5
+ * Regenerated from discovery document revision 20240626
6
+
7
+ ### v0.32.0 (2024-06-23)
8
+
9
+ * Regenerated from discovery document revision 20240617
10
+
3
11
  ### v0.31.0 (2024-05-19)
4
12
 
5
13
  * Regenerated using generator version 0.15.0
@@ -22,6 +22,186 @@ module Google
22
22
  module Apis
23
23
  module ClassroomV1
24
24
 
25
+ # An add-on attachment on a post.
26
+ class AddOnAttachment
27
+ include Google::Apis::Core::Hashable
28
+
29
+ # Output only. Identifiers of attachments that were previous copies of this
30
+ # attachment. If the attachment was previously copied by virtue of its parent
31
+ # post being copied, this enumerates the identifiers of attachments that were
32
+ # its previous copies in ascending chronological order of copy.
33
+ # Corresponds to the JSON property `copyHistory`
34
+ # @return [Array<Google::Apis::ClassroomV1::CopyHistory>]
35
+ attr_accessor :copy_history
36
+
37
+ # Immutable. Identifier of the course.
38
+ # Corresponds to the JSON property `courseId`
39
+ # @return [String]
40
+ attr_accessor :course_id
41
+
42
+ # Represents a whole or partial calendar date, such as a birthday. The time of
43
+ # day and time zone are either specified elsewhere or are insignificant. The
44
+ # date is relative to the Gregorian Calendar. This can represent one of the
45
+ # following: * A full date, with non-zero year, month, and day values. * A month
46
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
47
+ # with a zero month and a zero day. * A year and month, with a zero day (for
48
+ # example, a credit card expiration date). Related types: * google.type.
49
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
50
+ # Corresponds to the JSON property `dueDate`
51
+ # @return [Google::Apis::ClassroomV1::Date]
52
+ attr_accessor :due_date
53
+
54
+ # Represents a time of day. The date and time zone are either not significant or
55
+ # are specified elsewhere. An API may choose to allow leap seconds. Related
56
+ # types are google.type.Date and `google.protobuf.Timestamp`.
57
+ # Corresponds to the JSON property `dueTime`
58
+ # @return [Google::Apis::ClassroomV1::TimeOfDay]
59
+ attr_accessor :due_time
60
+
61
+ # Immutable. Classroom-assigned identifier for this attachment, unique per post.
62
+ # Corresponds to the JSON property `id`
63
+ # @return [String]
64
+ attr_accessor :id
65
+
66
+ # Immutable. Identifier of the announcement, courseWork, or courseWorkMaterial
67
+ # under which the attachment is attached. Unique per course.
68
+ # Corresponds to the JSON property `itemId`
69
+ # @return [String]
70
+ attr_accessor :item_id
71
+
72
+ # Maximum grade for this attachment. Can only be set if `studentWorkReviewUri`
73
+ # is set. Set to a non-zero value to indicate that the attachment supports grade
74
+ # passback. If set, this must be a non-negative integer value. When set to zero,
75
+ # the attachment will not support grade passback.
76
+ # Corresponds to the JSON property `maxPoints`
77
+ # @return [Float]
78
+ attr_accessor :max_points
79
+
80
+ # Immutable. Deprecated, use item_id instead.
81
+ # Corresponds to the JSON property `postId`
82
+ # @return [String]
83
+ attr_accessor :post_id
84
+
85
+ # URI to be iframed after being populated with query parameters.
86
+ # Corresponds to the JSON property `studentViewUri`
87
+ # @return [Google::Apis::ClassroomV1::EmbedUri]
88
+ attr_accessor :student_view_uri
89
+
90
+ # URI to be iframed after being populated with query parameters.
91
+ # Corresponds to the JSON property `studentWorkReviewUri`
92
+ # @return [Google::Apis::ClassroomV1::EmbedUri]
93
+ attr_accessor :student_work_review_uri
94
+
95
+ # URI to be iframed after being populated with query parameters.
96
+ # Corresponds to the JSON property `teacherViewUri`
97
+ # @return [Google::Apis::ClassroomV1::EmbedUri]
98
+ attr_accessor :teacher_view_uri
99
+
100
+ # Required. Title of this attachment. The title must be between 1 and 1000
101
+ # characters.
102
+ # Corresponds to the JSON property `title`
103
+ # @return [String]
104
+ attr_accessor :title
105
+
106
+ def initialize(**args)
107
+ update!(**args)
108
+ end
109
+
110
+ # Update properties of this object
111
+ def update!(**args)
112
+ @copy_history = args[:copy_history] if args.key?(:copy_history)
113
+ @course_id = args[:course_id] if args.key?(:course_id)
114
+ @due_date = args[:due_date] if args.key?(:due_date)
115
+ @due_time = args[:due_time] if args.key?(:due_time)
116
+ @id = args[:id] if args.key?(:id)
117
+ @item_id = args[:item_id] if args.key?(:item_id)
118
+ @max_points = args[:max_points] if args.key?(:max_points)
119
+ @post_id = args[:post_id] if args.key?(:post_id)
120
+ @student_view_uri = args[:student_view_uri] if args.key?(:student_view_uri)
121
+ @student_work_review_uri = args[:student_work_review_uri] if args.key?(:student_work_review_uri)
122
+ @teacher_view_uri = args[:teacher_view_uri] if args.key?(:teacher_view_uri)
123
+ @title = args[:title] if args.key?(:title)
124
+ end
125
+ end
126
+
127
+ # Payload for grade update requests.
128
+ class AddOnAttachmentStudentSubmission
129
+ include Google::Apis::Core::Hashable
130
+
131
+ # Student grade on this attachment. If unset, no grade was set.
132
+ # Corresponds to the JSON property `pointsEarned`
133
+ # @return [Float]
134
+ attr_accessor :points_earned
135
+
136
+ # Submission state of add-on attachment's parent post (i.e. assignment).
137
+ # Corresponds to the JSON property `postSubmissionState`
138
+ # @return [String]
139
+ attr_accessor :post_submission_state
140
+
141
+ def initialize(**args)
142
+ update!(**args)
143
+ end
144
+
145
+ # Update properties of this object
146
+ def update!(**args)
147
+ @points_earned = args[:points_earned] if args.key?(:points_earned)
148
+ @post_submission_state = args[:post_submission_state] if args.key?(:post_submission_state)
149
+ end
150
+ end
151
+
152
+ # Attachment-relevant metadata for Classroom add-ons in the context of a
153
+ # specific post.
154
+ class AddOnContext
155
+ include Google::Apis::Core::Hashable
156
+
157
+ # Immutable. Identifier of the course.
158
+ # Corresponds to the JSON property `courseId`
159
+ # @return [String]
160
+ attr_accessor :course_id
161
+
162
+ # Immutable. Identifier of the announcement, courseWork, or courseWorkMaterial
163
+ # under which the attachment is attached.
164
+ # Corresponds to the JSON property `itemId`
165
+ # @return [String]
166
+ attr_accessor :item_id
167
+
168
+ # Immutable. Deprecated, use item_id instead.
169
+ # Corresponds to the JSON property `postId`
170
+ # @return [String]
171
+ attr_accessor :post_id
172
+
173
+ # Role-specific context if the requesting user is a student.
174
+ # Corresponds to the JSON property `studentContext`
175
+ # @return [Google::Apis::ClassroomV1::StudentContext]
176
+ attr_accessor :student_context
177
+
178
+ # Optional. Whether the post allows the teacher to see student work and passback
179
+ # grades.
180
+ # Corresponds to the JSON property `supportsStudentWork`
181
+ # @return [Boolean]
182
+ attr_accessor :supports_student_work
183
+ alias_method :supports_student_work?, :supports_student_work
184
+
185
+ # Role-specific context if the requesting user is a teacher.
186
+ # Corresponds to the JSON property `teacherContext`
187
+ # @return [Google::Apis::ClassroomV1::TeacherContext]
188
+ attr_accessor :teacher_context
189
+
190
+ def initialize(**args)
191
+ update!(**args)
192
+ end
193
+
194
+ # Update properties of this object
195
+ def update!(**args)
196
+ @course_id = args[:course_id] if args.key?(:course_id)
197
+ @item_id = args[:item_id] if args.key?(:item_id)
198
+ @post_id = args[:post_id] if args.key?(:post_id)
199
+ @student_context = args[:student_context] if args.key?(:student_context)
200
+ @supports_student_work = args[:supports_student_work] if args.key?(:supports_student_work)
201
+ @teacher_context = args[:teacher_context] if args.key?(:teacher_context)
202
+ end
203
+ end
204
+
25
205
  # Announcement created by a teacher for students of the course
26
206
  class Announcement
27
207
  include Google::Apis::Core::Hashable
@@ -215,6 +395,44 @@ module Google
215
395
  end
216
396
  end
217
397
 
398
+ # Identifier of a previous copy of a given attachment.
399
+ class CopyHistory
400
+ include Google::Apis::Core::Hashable
401
+
402
+ # Immutable. Identifier of the attachment.
403
+ # Corresponds to the JSON property `attachmentId`
404
+ # @return [String]
405
+ attr_accessor :attachment_id
406
+
407
+ # Immutable. Identifier of the course.
408
+ # Corresponds to the JSON property `courseId`
409
+ # @return [String]
410
+ attr_accessor :course_id
411
+
412
+ # Immutable. Identifier of the announcement, courseWork, or courseWorkMaterial
413
+ # under which the attachment is attached.
414
+ # Corresponds to the JSON property `itemId`
415
+ # @return [String]
416
+ attr_accessor :item_id
417
+
418
+ # Immutable. Deprecated, use item_id instead.
419
+ # Corresponds to the JSON property `postId`
420
+ # @return [String]
421
+ attr_accessor :post_id
422
+
423
+ def initialize(**args)
424
+ update!(**args)
425
+ end
426
+
427
+ # Update properties of this object
428
+ def update!(**args)
429
+ @attachment_id = args[:attachment_id] if args.key?(:attachment_id)
430
+ @course_id = args[:course_id] if args.key?(:course_id)
431
+ @item_id = args[:item_id] if args.key?(:item_id)
432
+ @post_id = args[:post_id] if args.key?(:post_id)
433
+ end
434
+ end
435
+
218
436
  # A Course in Classroom.
219
437
  class Course
220
438
  include Google::Apis::Core::Hashable
@@ -896,6 +1114,26 @@ module Google
896
1114
  end
897
1115
  end
898
1116
 
1117
+ # URI to be iframed after being populated with query parameters.
1118
+ class EmbedUri
1119
+ include Google::Apis::Core::Hashable
1120
+
1121
+ # Required. URI to be iframed after being populated with query parameters. This
1122
+ # must be a valid UTF-8 string containing between 1 and 1800 characters.
1123
+ # Corresponds to the JSON property `uri`
1124
+ # @return [String]
1125
+ attr_accessor :uri
1126
+
1127
+ def initialize(**args)
1128
+ update!(**args)
1129
+ end
1130
+
1131
+ # Update properties of this object
1132
+ def update!(**args)
1133
+ @uri = args[:uri] if args.key?(:uri)
1134
+ end
1135
+ end
1136
+
899
1137
  # A generic empty message that you can re-use to avoid defining duplicated empty
900
1138
  # messages in your APIs. A typical example is to use it as the request or the
901
1139
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -1296,6 +1534,32 @@ module Google
1296
1534
  end
1297
1535
  end
1298
1536
 
1537
+ # Response when listing add-on attachments.
1538
+ class ListAddOnAttachmentsResponse
1539
+ include Google::Apis::Core::Hashable
1540
+
1541
+ # Attachments under the given post.
1542
+ # Corresponds to the JSON property `addOnAttachments`
1543
+ # @return [Array<Google::Apis::ClassroomV1::AddOnAttachment>]
1544
+ attr_accessor :add_on_attachments
1545
+
1546
+ # A token, which can be sent as `pageToken` to retrieve the next page. If this
1547
+ # field is omitted, there are no subsequent pages.
1548
+ # Corresponds to the JSON property `nextPageToken`
1549
+ # @return [String]
1550
+ attr_accessor :next_page_token
1551
+
1552
+ def initialize(**args)
1553
+ update!(**args)
1554
+ end
1555
+
1556
+ # Update properties of this object
1557
+ def update!(**args)
1558
+ @add_on_attachments = args[:add_on_attachments] if args.key?(:add_on_attachments)
1559
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1560
+ end
1561
+ end
1562
+
1299
1563
  # Response when listing course work.
1300
1564
  class ListAnnouncementsResponse
1301
1565
  include Google::Apis::Core::Hashable
@@ -2001,6 +2265,27 @@ module Google
2001
2265
  end
2002
2266
  end
2003
2267
 
2268
+ # Role-specific context if the requesting user is a student.
2269
+ class StudentContext
2270
+ include Google::Apis::Core::Hashable
2271
+
2272
+ # Requesting user's submission id to be used for grade passback and to identify
2273
+ # the student when showing student work to the teacher. This is set exactly when
2274
+ # `supportsStudentWork` is `true`.
2275
+ # Corresponds to the JSON property `submissionId`
2276
+ # @return [String]
2277
+ attr_accessor :submission_id
2278
+
2279
+ def initialize(**args)
2280
+ update!(**args)
2281
+ end
2282
+
2283
+ # Update properties of this object
2284
+ def update!(**args)
2285
+ @submission_id = args[:submission_id] if args.key?(:submission_id)
2286
+ end
2287
+ end
2288
+
2004
2289
  # Student submission for course work. `StudentSubmission` items are generated
2005
2290
  # when a `CourseWork` item is created. Student submissions that have never been
2006
2291
  # accessed (i.e. with `state` = NEW) may not have a creation time or update time.
@@ -2189,6 +2474,19 @@ module Google
2189
2474
  end
2190
2475
  end
2191
2476
 
2477
+ # Role-specific context if the requesting user is a teacher.
2478
+ class TeacherContext
2479
+ include Google::Apis::Core::Hashable
2480
+
2481
+ def initialize(**args)
2482
+ update!(**args)
2483
+ end
2484
+
2485
+ # Update properties of this object
2486
+ def update!(**args)
2487
+ end
2488
+ end
2489
+
2192
2490
  # Represents a time of day. The date and time zone are either not significant or
2193
2491
  # are specified elsewhere. An API may choose to allow leap seconds. Related
2194
2492
  # types are google.type.Date and `google.protobuf.Timestamp`.
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ClassroomV1
18
18
  # Version of the google-apis-classroom_v1 gem
19
- GEM_VERSION = "0.31.0"
19
+ GEM_VERSION = "0.33.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231121"
25
+ REVISION = "20240626"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,24 @@ module Google
22
22
  module Apis
23
23
  module ClassroomV1
24
24
 
25
+ class AddOnAttachment
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
31
+ class AddOnAttachmentStudentSubmission
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
37
+ class AddOnContext
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
25
43
  class Announcement
26
44
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
45
 
@@ -52,6 +70,12 @@ module Google
52
70
  include Google::Apis::Core::JsonObjectSupport
53
71
  end
54
72
 
73
+ class CopyHistory
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
55
79
  class Course
56
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
81
 
@@ -118,6 +142,12 @@ module Google
118
142
  include Google::Apis::Core::JsonObjectSupport
119
143
  end
120
144
 
145
+ class EmbedUri
146
+ class Representation < Google::Apis::Core::JsonRepresentation; end
147
+
148
+ include Google::Apis::Core::JsonObjectSupport
149
+ end
150
+
121
151
  class Empty
122
152
  class Representation < Google::Apis::Core::JsonRepresentation; end
123
153
 
@@ -190,6 +220,12 @@ module Google
190
220
  include Google::Apis::Core::JsonObjectSupport
191
221
  end
192
222
 
223
+ class ListAddOnAttachmentsResponse
224
+ class Representation < Google::Apis::Core::JsonRepresentation; end
225
+
226
+ include Google::Apis::Core::JsonObjectSupport
227
+ end
228
+
193
229
  class ListAnnouncementsResponse
194
230
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
231
 
@@ -352,6 +388,12 @@ module Google
352
388
  include Google::Apis::Core::JsonObjectSupport
353
389
  end
354
390
 
391
+ class StudentContext
392
+ class Representation < Google::Apis::Core::JsonRepresentation; end
393
+
394
+ include Google::Apis::Core::JsonObjectSupport
395
+ end
396
+
355
397
  class StudentSubmission
356
398
  class Representation < Google::Apis::Core::JsonRepresentation; end
357
399
 
@@ -370,6 +412,12 @@ module Google
370
412
  include Google::Apis::Core::JsonObjectSupport
371
413
  end
372
414
 
415
+ class TeacherContext
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
373
421
  class TimeOfDay
374
422
  class Representation < Google::Apis::Core::JsonRepresentation; end
375
423
 
@@ -400,6 +448,52 @@ module Google
400
448
  include Google::Apis::Core::JsonObjectSupport
401
449
  end
402
450
 
451
+ class AddOnAttachment
452
+ # @private
453
+ class Representation < Google::Apis::Core::JsonRepresentation
454
+ collection :copy_history, as: 'copyHistory', class: Google::Apis::ClassroomV1::CopyHistory, decorator: Google::Apis::ClassroomV1::CopyHistory::Representation
455
+
456
+ property :course_id, as: 'courseId'
457
+ property :due_date, as: 'dueDate', class: Google::Apis::ClassroomV1::Date, decorator: Google::Apis::ClassroomV1::Date::Representation
458
+
459
+ property :due_time, as: 'dueTime', class: Google::Apis::ClassroomV1::TimeOfDay, decorator: Google::Apis::ClassroomV1::TimeOfDay::Representation
460
+
461
+ property :id, as: 'id'
462
+ property :item_id, as: 'itemId'
463
+ property :max_points, as: 'maxPoints'
464
+ property :post_id, as: 'postId'
465
+ property :student_view_uri, as: 'studentViewUri', class: Google::Apis::ClassroomV1::EmbedUri, decorator: Google::Apis::ClassroomV1::EmbedUri::Representation
466
+
467
+ property :student_work_review_uri, as: 'studentWorkReviewUri', class: Google::Apis::ClassroomV1::EmbedUri, decorator: Google::Apis::ClassroomV1::EmbedUri::Representation
468
+
469
+ property :teacher_view_uri, as: 'teacherViewUri', class: Google::Apis::ClassroomV1::EmbedUri, decorator: Google::Apis::ClassroomV1::EmbedUri::Representation
470
+
471
+ property :title, as: 'title'
472
+ end
473
+ end
474
+
475
+ class AddOnAttachmentStudentSubmission
476
+ # @private
477
+ class Representation < Google::Apis::Core::JsonRepresentation
478
+ property :points_earned, as: 'pointsEarned'
479
+ property :post_submission_state, as: 'postSubmissionState'
480
+ end
481
+ end
482
+
483
+ class AddOnContext
484
+ # @private
485
+ class Representation < Google::Apis::Core::JsonRepresentation
486
+ property :course_id, as: 'courseId'
487
+ property :item_id, as: 'itemId'
488
+ property :post_id, as: 'postId'
489
+ property :student_context, as: 'studentContext', class: Google::Apis::ClassroomV1::StudentContext, decorator: Google::Apis::ClassroomV1::StudentContext::Representation
490
+
491
+ property :supports_student_work, as: 'supportsStudentWork'
492
+ property :teacher_context, as: 'teacherContext', class: Google::Apis::ClassroomV1::TeacherContext, decorator: Google::Apis::ClassroomV1::TeacherContext::Representation
493
+
494
+ end
495
+ end
496
+
403
497
  class Announcement
404
498
  # @private
405
499
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -457,6 +551,16 @@ module Google
457
551
  end
458
552
  end
459
553
 
554
+ class CopyHistory
555
+ # @private
556
+ class Representation < Google::Apis::Core::JsonRepresentation
557
+ property :attachment_id, as: 'attachmentId'
558
+ property :course_id, as: 'courseId'
559
+ property :item_id, as: 'itemId'
560
+ property :post_id, as: 'postId'
561
+ end
562
+ end
563
+
460
564
  class Course
461
565
  # @private
462
566
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -615,6 +719,13 @@ module Google
615
719
  end
616
720
  end
617
721
 
722
+ class EmbedUri
723
+ # @private
724
+ class Representation < Google::Apis::Core::JsonRepresentation
725
+ property :uri, as: 'uri'
726
+ end
727
+ end
728
+
618
729
  class Empty
619
730
  # @private
620
731
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -728,6 +839,15 @@ module Google
728
839
  end
729
840
  end
730
841
 
842
+ class ListAddOnAttachmentsResponse
843
+ # @private
844
+ class Representation < Google::Apis::Core::JsonRepresentation
845
+ collection :add_on_attachments, as: 'addOnAttachments', class: Google::Apis::ClassroomV1::AddOnAttachment, decorator: Google::Apis::ClassroomV1::AddOnAttachment::Representation
846
+
847
+ property :next_page_token, as: 'nextPageToken'
848
+ end
849
+ end
850
+
731
851
  class ListAnnouncementsResponse
732
852
  # @private
733
853
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -968,6 +1088,13 @@ module Google
968
1088
  end
969
1089
  end
970
1090
 
1091
+ class StudentContext
1092
+ # @private
1093
+ class Representation < Google::Apis::Core::JsonRepresentation
1094
+ property :submission_id, as: 'submissionId'
1095
+ end
1096
+ end
1097
+
971
1098
  class StudentSubmission
972
1099
  # @private
973
1100
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1015,6 +1142,12 @@ module Google
1015
1142
  end
1016
1143
  end
1017
1144
 
1145
+ class TeacherContext
1146
+ # @private
1147
+ class Representation < Google::Apis::Core::JsonRepresentation
1148
+ end
1149
+ end
1150
+
1018
1151
  class TimeOfDay
1019
1152
  # @private
1020
1153
  class Representation < Google::Apis::Core::JsonRepresentation