Class: Google::Apis::DriveV2::File::ShortcutDetails
- Inherits:
-
Object
- Object
- Google::Apis::DriveV2::File::ShortcutDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/drive_v2/classes.rb,
lib/google/apis/drive_v2/representations.rb,
lib/google/apis/drive_v2/representations.rb
Overview
Shortcut file details. Only populated for shortcut files, which have the
mimeType field set to application/vnd.google-apps.shortcut
. Can only be set
on files.insert
requests.
Instance Attribute Summary collapse
-
#target_id ⇒ String
The ID of the file that this shortcut points to.
-
#target_mime_type ⇒ String
Output only.
-
#target_resource_key ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ShortcutDetails
constructor
A new instance of ShortcutDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ShortcutDetails
Returns a new instance of ShortcutDetails.
3040 3041 3042 |
# File 'lib/google/apis/drive_v2/classes.rb', line 3040 def initialize(**args) update!(**args) end |
Instance Attribute Details
#target_id ⇒ String
The ID of the file that this shortcut points to. Can only be set on files.
insert
requests.
Corresponds to the JSON property targetId
3026 3027 3028 |
# File 'lib/google/apis/drive_v2/classes.rb', line 3026 def target_id @target_id end |
#target_mime_type ⇒ String
Output only. The MIME type of the file that this shortcut points to. The value
of this field is a snapshot of the target's MIME type, captured when the
shortcut is created.
Corresponds to the JSON property targetMimeType
3033 3034 3035 |
# File 'lib/google/apis/drive_v2/classes.rb', line 3033 def target_mime_type @target_mime_type end |
#target_resource_key ⇒ String
Output only. The ResourceKey for the target file.
Corresponds to the JSON property targetResourceKey
3038 3039 3040 |
# File 'lib/google/apis/drive_v2/classes.rb', line 3038 def target_resource_key @target_resource_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3045 3046 3047 3048 3049 |
# File 'lib/google/apis/drive_v2/classes.rb', line 3045 def update!(**args) @target_id = args[:target_id] if args.key?(:target_id) @target_mime_type = args[:target_mime_type] if args.key?(:target_mime_type) @target_resource_key = args[:target_resource_key] if args.key?(:target_resource_key) end |