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
| 1336 1337 1338 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1336 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
| 1329 1330 1331 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1329 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
| 1334 1335 1336 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1334 def student_submissions @student_submissions end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1341 1342 1343 1344 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1341 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 |