Class: Google::Apis::ClassroomV1::ListCourseWorkMaterialResponse
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1::ListCourseWorkMaterialResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- 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 course work material.
Instance Attribute Summary collapse
-
#course_work_material ⇒ Array<Google::Apis::ClassroomV1::CourseWorkMaterial>
Course work material items that match the request.
-
#next_page_token ⇒ String
Token identifying the next page of results to return.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCourseWorkMaterialResponse
constructor
A new instance of ListCourseWorkMaterialResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCourseWorkMaterialResponse
Returns a new instance of ListCourseWorkMaterialResponse.
1272 1273 1274 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1272 def initialize(**args) update!(**args) end |
Instance Attribute Details
#course_work_material ⇒ Array<Google::Apis::ClassroomV1::CourseWorkMaterial>
Course work material items that match the request.
Corresponds to the JSON property courseWorkMaterial
1264 1265 1266 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1264 def course_work_material @course_work_material end |
#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
1270 1271 1272 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1270 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1277 1278 1279 1280 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1277 def update!(**args) @course_work_material = args[:course_work_material] if args.key?(:course_work_material) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |