Class: Google::Apis::ClassroomV1::DriveFile
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1::DriveFile
- Defined in:
- generated/google/apis/classroom_v1/classes.rb,
generated/google/apis/classroom_v1/representations.rb,
generated/google/apis/classroom_v1/representations.rb
Overview
Representation of a Google Drive file.
Instance Attribute Summary collapse
-
#alternate_link ⇒ String
URL that can be used to access the Drive item.
-
#id ⇒ String
Drive API resource ID.
-
#thumbnail_url ⇒ String
URL of a thumbnail image of the Drive item.
-
#title ⇒ String
Title of the Drive item.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DriveFile
constructor
A new instance of DriveFile.
-
#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) ⇒ DriveFile
Returns a new instance of DriveFile
260 261 262 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 260 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alternate_link ⇒ String
URL that can be used to access the Drive item.
Read-only.
Corresponds to the JSON property alternateLink
253 254 255 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 253 def alternate_link @alternate_link end |
#id ⇒ String
Drive API resource ID.
Corresponds to the JSON property id
258 259 260 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 258 def id @id end |
#thumbnail_url ⇒ String
URL of a thumbnail image of the Drive item.
Read-only.
Corresponds to the JSON property thumbnailUrl
241 242 243 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 241 def thumbnail_url @thumbnail_url end |
#title ⇒ String
Title of the Drive item.
Read-only.
Corresponds to the JSON property title
247 248 249 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 247 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
265 266 267 268 269 270 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 265 def update!(**args) @thumbnail_url = args[:thumbnail_url] if args.key?(:thumbnail_url) @title = args[:title] if args.key?(:title) @alternate_link = args[:alternate_link] if args.key?(:alternate_link) @id = args[:id] if args.key?(:id) end |