Class: Google::Apis::ClassroomV1::CourseMaterialSet
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1::CourseMaterialSet
- 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
-
#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.
450 451 452 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 450 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
443 444 445 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 443 def materials @materials end |
#title ⇒ String
Title for this set.
Corresponds to the JSON property title
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 |