Class: Google::Apis::ClassroomV1beta1::ListStudentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1beta1::ListStudentsResponse
- Includes:
- Google::Apis::Core::Hashable
- Defined in:
- generated/google/apis/classroom_v1beta1/classes.rb,
generated/google/apis/classroom_v1beta1/representations.rb,
generated/google/apis/classroom_v1beta1/representations.rb
Overview
Response when listing students.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Token identifying the next page of results to return.
-
#students ⇒ Array<Google::Apis::ClassroomV1beta1::Student>
The students who match the list request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListStudentsResponse
constructor
A new instance of ListStudentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListStudentsResponse
Returns a new instance of ListStudentsResponse.
435 436 437 |
# File 'generated/google/apis/classroom_v1beta1/classes.rb', line 435 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
433 434 435 |
# File 'generated/google/apis/classroom_v1beta1/classes.rb', line 433 def next_page_token @next_page_token end |
#students ⇒ Array<Google::Apis::ClassroomV1beta1::Student>
The students who match the list request.
Corresponds to the JSON property students
427 428 429 |
# File 'generated/google/apis/classroom_v1beta1/classes.rb', line 427 def students @students end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
440 441 442 443 |
# File 'generated/google/apis/classroom_v1beta1/classes.rb', line 440 def update!(**args) @students = args[:students] unless args[:students].nil? @next_page_token = args[:next_page_token] unless args[:next_page_token].nil? end |