Show / Hide Table of Contents

Class Comment.QuotedFileContentData

The file content to which the comment refers, typically within the anchor region. For a text file, for example, this would be the text at the location of the comment.

Inheritance
System.Object
Comment.QuotedFileContentData
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 QuotedFileContentData

Properties

MimeType

The MIME type of the quoted content.

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

Value

The quoted content itself. This is interpreted as plain text if set through the API.

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