class Google::Apis::ClassroomV1::ListCourseWorkMaterialResponse

Response when listing course work material.

Attributes

course_work_material[RW]

Course work material items that match the request. Corresponds to the JSON property `courseWorkMaterial` @return [Array<Google::Apis::ClassroomV1::CourseWorkMaterial>]

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]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/classroom_v1/classes.rb, line 1272
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 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