class Google::Apis::DriveV3::Comment::QuotedFileContent

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.

Attributes

mime_type[RW]

The MIME type of the quoted content. Corresponds to the JSON property `mimeType` @return [String]

value[RW]

The quoted content itself. This is interpreted as plain text if set through the API. Corresponds to the JSON property `value` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/drive_v3/classes.rb, line 401
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/drive_v3/classes.rb, line 406
def update!(**args)
  @mime_type = args[:mime_type] if args.key?(:mime_type)
  @value = args[:value] if args.key?(:value)
end