Class: Google::Apis::ClassroomV1::CourseMaterialSet
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1::CourseMaterialSet
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/classroom_v1/classes.rb,
lib/google/apis/classroom_v1/representations.rb,
lib/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
-
#materials ⇒ Array<Google::Apis::ClassroomV1::CourseMaterial>
Materials attached to this set.
-
#title ⇒ String
Title for this set.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CourseMaterialSet
constructor
A new instance of CourseMaterialSet.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CourseMaterialSet
Returns a new instance of CourseMaterialSet.
678 679 680 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 678 def initialize(**args) update!(**args) end |
Instance Attribute Details
#materials ⇒ Array<Google::Apis::ClassroomV1::CourseMaterial>
Materials attached to this set.
Corresponds to the JSON property materials
671 672 673 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 671 def materials @materials end |
#title ⇒ String
Title for this set.
Corresponds to the JSON property title
676 677 678 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 676 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
683 684 685 686 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 683 def update!(**args) @materials = args[:materials] if args.key?(:materials) @title = args[:title] if args.key?(:title) end |