Class: Google::Apis::DriveV3::File::ContentHints::Thumbnail
- Inherits:
-
Object
- Object
- Google::Apis::DriveV3::File::ContentHints::Thumbnail
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/drive_v3/classes.rb,
lib/google/apis/drive_v3/representations.rb,
lib/google/apis/drive_v3/representations.rb
Overview
A thumbnail for the file. This will only be used if Google Drive cannot generate a standard thumbnail.
Instance Attribute Summary collapse
-
#image ⇒ String
The thumbnail data encoded with URL-safe Base64 (RFC 4648 section 5).
-
#mime_type ⇒ String
The MIME type of the thumbnail.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Thumbnail
constructor
A new instance of Thumbnail.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Thumbnail
Returns a new instance of Thumbnail.
2185 2186 2187 |
# File 'lib/google/apis/drive_v3/classes.rb', line 2185 def initialize(**args) update!(**args) end |
Instance Attribute Details
#image ⇒ String
The thumbnail data encoded with URL-safe Base64 (RFC 4648 section 5).
Corresponds to the JSON property image
NOTE: Values are automatically base64 encoded/decoded in the client library.
2178 2179 2180 |
# File 'lib/google/apis/drive_v3/classes.rb', line 2178 def image @image end |
#mime_type ⇒ String
The MIME type of the thumbnail.
Corresponds to the JSON property mimeType
2183 2184 2185 |
# File 'lib/google/apis/drive_v3/classes.rb', line 2183 def mime_type @mime_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2190 2191 2192 2193 |
# File 'lib/google/apis/drive_v3/classes.rb', line 2190 def update!(**args) @image = args[:image] if args.key?(:image) @mime_type = args[:mime_type] if args.key?(:mime_type) end |