Show / Hide Table of Contents

Class File.ContentHintsData.ThumbnailData

A thumbnail for the file. This will only be used if Google Drive cannot generate a standard thumbnail.

Inheritance
System.Object
File.ContentHintsData.ThumbnailData
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 ThumbnailData

Properties

Image

The thumbnail data encoded with URL-safe Base64 (RFC 4648 section 5).

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

MimeType

The MIME type of the thumbnail.

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