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.
1501 1502 1503 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1501 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
1499 1500 1501 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1499 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
1493 1494 1495 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1493 def student_submissions @student_submissions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1506 1507 1508 1509 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1506 def update!(**args) @student_submissions = args[:student_submissions] if args.key?(:student_submissions) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |