Class: Google::Apis::ClassroomV1::Attachment

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

Attachment added to student assignment work. When creating attachments, setting the form field is not supported.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Attachment

Returns a new instance of Attachment.



363
364
365
# File 'lib/google/apis/classroom_v1/classes.rb', line 363

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



346
347
348
# File 'lib/google/apis/classroom_v1/classes.rb', line 346

def drive_file
  @drive_file
end

#formGoogle::Apis::ClassroomV1::Form

Google Forms item. Corresponds to the JSON property form



351
352
353
# File 'lib/google/apis/classroom_v1/classes.rb', line 351

def form
  @form
end

URL item. Corresponds to the JSON property link



356
357
358
# File 'lib/google/apis/classroom_v1/classes.rb', line 356

def link
  @link
end

#you_tube_videoGoogle::Apis::ClassroomV1::YouTubeVideo

YouTube video item. Corresponds to the JSON property youTubeVideo



361
362
363
# File 'lib/google/apis/classroom_v1/classes.rb', line 361

def you_tube_video
  @you_tube_video
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



368
369
370
371
372
373
# File 'lib/google/apis/classroom_v1/classes.rb', line 368

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