Class: Google::Apis::ClassroomV1::ListTopicResponse
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1::ListTopicResponse
- 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 topics.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Token identifying the next page of results to return.
-
#topic ⇒ Array<Google::Apis::ClassroomV1::Topic>
Topic items that match the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListTopicResponse
constructor
A new instance of ListTopicResponse.
-
#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) ⇒ ListTopicResponse
Returns a new instance of ListTopicResponse
1413 1414 1415 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1413 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
1406 1407 1408 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1406 def next_page_token @next_page_token end |
#topic ⇒ Array<Google::Apis::ClassroomV1::Topic>
Topic items that match the request.
Corresponds to the JSON property topic
1411 1412 1413 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1411 def topic @topic end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1418 1419 1420 1421 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1418 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @topic = args[:topic] if args.key?(:topic) end |