Class: Google::Apis::DriveV3::Comment

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/drive_v3/classes.rb,
lib/google/apis/drive_v3/representations.rb,
lib/google/apis/drive_v3/representations.rb

Overview

A comment on a file.

Defined Under Namespace

Classes: QuotedFileContent

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Comment

Returns a new instance of Comment.



497
498
499
# File 'lib/google/apis/drive_v3/classes.rb', line 497

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#anchorString

A region of the document represented as a JSON string. For details on defining anchor properties, refer to Add comments and replies. Corresponds to the JSON property anchor

Returns:

  • (String)


433
434
435
# File 'lib/google/apis/drive_v3/classes.rb', line 433

def anchor
  @anchor
end

#authorGoogle::Apis::DriveV3::User

Information about a Drive user. Corresponds to the JSON property author



438
439
440
# File 'lib/google/apis/drive_v3/classes.rb', line 438

def author
  @author
end

#contentString

The plain text content of the comment. This field is used for setting the content, while htmlContent should be displayed. Corresponds to the JSON property content

Returns:

  • (String)


444
445
446
# File 'lib/google/apis/drive_v3/classes.rb', line 444

def content
  @content
end

#created_timeDateTime

The time at which the comment was created (RFC 3339 date-time). Corresponds to the JSON property createdTime

Returns:

  • (DateTime)


449
450
451
# File 'lib/google/apis/drive_v3/classes.rb', line 449

def created_time
  @created_time
end

#deletedBoolean Also known as: deleted?

Whether the comment has been deleted. A deleted comment has no content. Corresponds to the JSON property deleted

Returns:

  • (Boolean)


454
455
456
# File 'lib/google/apis/drive_v3/classes.rb', line 454

def deleted
  @deleted
end

#html_contentString

The content of the comment with HTML formatting. Corresponds to the JSON property htmlContent

Returns:

  • (String)


460
461
462
# File 'lib/google/apis/drive_v3/classes.rb', line 460

def html_content
  @html_content
end

#idString

The ID of the comment. Corresponds to the JSON property id

Returns:

  • (String)


465
466
467
# File 'lib/google/apis/drive_v3/classes.rb', line 465

def id
  @id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string "drive# comment". Corresponds to the JSON property kind

Returns:

  • (String)


471
472
473
# File 'lib/google/apis/drive_v3/classes.rb', line 471

def kind
  @kind
end

#modified_timeDateTime

The last time the comment or any of its replies was modified (RFC 3339 date- time). Corresponds to the JSON property modifiedTime

Returns:

  • (DateTime)


477
478
479
# File 'lib/google/apis/drive_v3/classes.rb', line 477

def modified_time
  @modified_time
end

#quoted_file_contentGoogle::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. Corresponds to the JSON property quotedFileContent



484
485
486
# File 'lib/google/apis/drive_v3/classes.rb', line 484

def quoted_file_content
  @quoted_file_content
end

#repliesArray<Google::Apis::DriveV3::Reply>

The full list of replies to the comment in chronological order. Corresponds to the JSON property replies

Returns:



489
490
491
# File 'lib/google/apis/drive_v3/classes.rb', line 489

def replies
  @replies
end

#resolvedBoolean Also known as: resolved?

Whether the comment has been resolved by one of its replies. Corresponds to the JSON property resolved

Returns:

  • (Boolean)


494
495
496
# File 'lib/google/apis/drive_v3/classes.rb', line 494

def resolved
  @resolved
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



502
503
504
505
506
507
508
509
510
511
512
513
514
515
# File 'lib/google/apis/drive_v3/classes.rb', line 502

def update!(**args)
  @anchor = args[:anchor] if args.key?(:anchor)
  @author = args[:author] if args.key?(:author)
  @content = args[:content] if args.key?(:content)
  @created_time = args[:created_time] if args.key?(:created_time)
  @deleted = args[:deleted] if args.key?(:deleted)
  @html_content = args[:html_content] if args.key?(:html_content)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @modified_time = args[:modified_time] if args.key?(:modified_time)
  @quoted_file_content = args[:quoted_file_content] if args.key?(:quoted_file_content)
  @replies = args[:replies] if args.key?(:replies)
  @resolved = args[:resolved] if args.key?(:resolved)
end