Class: Google::Apis::ClassroomV1::ListStudentSubmissionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1::ListStudentSubmissionsResponse
- Defined in:
- generated/google/apis/classroom_v1/classes.rb,
generated/google/apis/classroom_v1/representations.rb,
generated/google/apis/classroom_v1/representations.rb
Overview
Response when listing student submissions.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Token identifying the next page of results to return.
-
#student_submissions ⇒ Array<Google::Apis::ClassroomV1::StudentSubmission>
Student work that matches the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListStudentSubmissionsResponse
constructor
A new instance of ListStudentSubmissionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListStudentSubmissionsResponse
Returns a new instance of ListStudentSubmissionsResponse
1364 1365 1366 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1364 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Token identifying the next page of results to return. If empty, no further
results are available.
Corresponds to the JSON property nextPageToken
1357 1358 1359 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1357 def next_page_token @next_page_token end |
#student_submissions ⇒ Array<Google::Apis::ClassroomV1::StudentSubmission>
Student work that matches the request.
Corresponds to the JSON property studentSubmissions
1362 1363 1364 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1362 def student_submissions @student_submissions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1369 1370 1371 1372 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1369 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @student_submissions = args[:student_submissions] if args.key?(:student_submissions) end |