class Google::Apis::ClassroomV1::CourseMaterialSet

A set of materials that appears on the “About” page of the course. These materials might include a syllabus, schedule, or other background information relating to the course as a whole.

Attributes

materials[RW]

Materials attached to this set. Corresponds to the JSON property `materials` @return [Array<Google::Apis::ClassroomV1::CourseMaterial>]

title[RW]

Title for this set. Corresponds to the JSON property `title` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/classroom_v1/classes.rb, line 450
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 455
def update!(**args)
  @materials = args[:materials] if args.key?(:materials)
  @title = args[:title] if args.key?(:title)
end