Class: Google::Apis::ClassroomV1::CourseMaterial

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 material attached to a course as part of a material set.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CourseMaterial

Returns a new instance of CourseMaterial.



421
422
423
# File 'generated/google/apis/classroom_v1/classes.rb', line 421

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

Instance Attribute Details

#drive_fileGoogle::Apis::ClassroomV1::DriveFile

Representation of a Google Drive file. Corresponds to the JSON property driveFile



404
405
406
# File 'generated/google/apis/classroom_v1/classes.rb', line 404

def drive_file
  @drive_file
end

#formGoogle::Apis::ClassroomV1::Form

Google Forms item. Corresponds to the JSON property form



409
410
411
# File 'generated/google/apis/classroom_v1/classes.rb', line 409

def form
  @form
end

URL item. Corresponds to the JSON property link



414
415
416
# File 'generated/google/apis/classroom_v1/classes.rb', line 414

def link
  @link
end

#you_tube_videoGoogle::Apis::ClassroomV1::YouTubeVideo

YouTube video item. Corresponds to the JSON property youTubeVideo



419
420
421
# File 'generated/google/apis/classroom_v1/classes.rb', line 419

def you_tube_video
  @you_tube_video
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



426
427
428
429
430
431
# File 'generated/google/apis/classroom_v1/classes.rb', line 426

def update!(**args)
  @drive_file = args[:drive_file] if args.key?(:drive_file)
  @form = args[:form] if args.key?(:form)
  @link = args[:link] if args.key?(:link)
  @you_tube_video = args[:you_tube_video] if args.key?(:you_tube_video)
end