Show / Hide Table of Contents

Class File.ShortcutDetailsData

Shortcut file details. Only populated for shortcut files, which have the mimeType field set to application/vnd.google-apps.shortcut.

Inheritance
System.Object
File.ShortcutDetailsData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Drive.v3.Data
Assembly: Google.Apis.Drive.v3.dll
Syntax
public class ShortcutDetailsData

Properties

TargetId

The ID of the file that this shortcut points to.

Declaration
[JsonProperty("targetId")]
public virtual string TargetId { get; set; }
Property Value
Type Description
System.String

TargetMimeType

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.

Declaration
[JsonProperty("targetMimeType")]
public virtual string TargetMimeType { get; set; }
Property Value
Type Description
System.String
Back to top