Show / Hide Table of Contents

Class File.ContentHintsData

Additional information about the content of the file. These fields are never populated in responses.

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

Properties

IndexableText

Text to be indexed for the file to improve fullText queries. This is limited to 128KB in length and may contain HTML elements.

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

Thumbnail

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

Declaration
[JsonProperty("thumbnail")]
public virtual File.ContentHintsData.ThumbnailData Thumbnail { get; set; }
Property Value
Type Description
File.ContentHintsData.ThumbnailData
Back to top