Class: Google::Apis::ClassroomV1::DriveFile
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1::DriveFile
- 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
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.
Constructor Details
#initialize(**args) ⇒ DriveFile
Returns a new instance of DriveFile.
1111 1112 1113 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 1111 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
1094 1095 1096 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 1094 def alternate_link @alternate_link end |
#id ⇒ String
Drive API resource ID.
Corresponds to the JSON property id
1099 1100 1101 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 1099 def id @id end |
#thumbnail_url ⇒ String
URL of a thumbnail image of the Drive item. Read-only.
Corresponds to the JSON property thumbnailUrl
1104 1105 1106 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 1104 def thumbnail_url @thumbnail_url end |
#title ⇒ String
Title of the Drive item. Read-only.
Corresponds to the JSON property title
1109 1110 1111 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 1109 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1116 1117 1118 1119 1120 1121 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 1116 def update!(**args) @alternate_link = args[:alternate_link] if args.key?(:alternate_link) @id = args[:id] if args.key?(:id) @thumbnail_url = args[:thumbnail_url] if args.key?(:thumbnail_url) @title = args[:title] if args.key?(:title) end |