Class: Google::Apis::ClassroomV1::CourseMaterialSet

Inherits:
Object
  • Object
show all
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

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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CourseMaterialSet

Returns a new instance of CourseMaterialSet.



450
451
452
# File 'generated/google/apis/classroom_v1/classes.rb', line 450

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#materialsArray<Google::Apis::ClassroomV1::CourseMaterial>

Materials attached to this set. Corresponds to the JSON property materials



443
444
445
# File 'generated/google/apis/classroom_v1/classes.rb', line 443

def materials
  @materials
end

#titleString

Title for this set. Corresponds to the JSON property title

Returns:

  • (String)


448
449
450
# File 'generated/google/apis/classroom_v1/classes.rb', line 448

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



455
456
457
458
# File 'generated/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