Class: Google::Apis::ClassroomV1::Material
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1::Material
- Defined in:
- generated/google/apis/classroom_v1/classes.rb,
generated/google/apis/classroom_v1/representations.rb,
generated/google/apis/classroom_v1/representations.rb
Overview
Material attached to course work.
When creating attachments, setting the form
field is not supported.
Instance Attribute Summary collapse
-
#drive_file ⇒ Google::Apis::ClassroomV1::SharedDriveFile
Drive file that is used as material for course work.
-
#form ⇒ Google::Apis::ClassroomV1::Form
Google Forms item.
-
#link ⇒ Google::Apis::ClassroomV1::Link
URL item.
-
#youtube_video ⇒ Google::Apis::ClassroomV1::YouTubeVideo
YouTube video item.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Material
constructor
A new instance of Material.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Material
Returns a new instance of Material
1449 1450 1451 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1449 def initialize(**args) update!(**args) end |
Instance Attribute Details
#drive_file ⇒ Google::Apis::ClassroomV1::SharedDriveFile
Drive file that is used as material for course work.
Corresponds to the JSON property driveFile
1432 1433 1434 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1432 def drive_file @drive_file end |
#form ⇒ Google::Apis::ClassroomV1::Form
Google Forms item.
Corresponds to the JSON property form
1437 1438 1439 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1437 def form @form end |
#link ⇒ Google::Apis::ClassroomV1::Link
URL item.
Corresponds to the JSON property link
1442 1443 1444 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1442 def link @link end |
#youtube_video ⇒ Google::Apis::ClassroomV1::YouTubeVideo
YouTube video item.
Corresponds to the JSON property youtubeVideo
1447 1448 1449 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1447 def youtube_video @youtube_video end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1454 1455 1456 1457 1458 1459 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1454 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) @youtube_video = args[:youtube_video] if args.key?(:youtube_video) end |