class Google::Apis::ClassroomV1::ListStudentSubmissionsResponse
Response when listing student submissions.
Attributes
next_page_token[RW]
Token identifying the next page of results to return. If empty, no further results are available. Corresponds to the JSON property `nextPageToken` @return [String]
student_submissions[RW]
Student
work that matches the request. Corresponds to the JSON property `studentSubmissions` @return [Array<Google::Apis::ClassroomV1::StudentSubmission>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/classroom_v1/classes.rb, line 1429 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/classroom_v1/classes.rb, line 1434 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