Class: Google::Apis::DriveactivityV2::FileComment

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

Overview

A comment on a file.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FileComment

Returns a new instance of FileComment.



968
969
970
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 968

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

Instance Attribute Details

#legacy_comment_idString

The comment in the discussion thread. This identifier is an opaque string compatible with the Drive API; see https://developers.google.com/drive/v3/ reference/comments/get Corresponds to the JSON property legacyCommentId

Returns:

  • (String)


947
948
949
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 947

def legacy_comment_id
  @legacy_comment_id
end

#legacy_discussion_idString

The discussion thread to which the comment was added. This identifier is an opaque string compatible with the Drive API and references the first comment in a discussion; see https://developers.google.com/drive/v3/reference/comments/ get Corresponds to the JSON property legacyDiscussionId

Returns:

  • (String)


955
956
957
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 955

def legacy_discussion_id
  @legacy_discussion_id
end

The link to the discussion thread containing this comment, for example, https: //docs.google.com/DOCUMENT_ID/edit?disco=THREAD_ID. Corresponds to the JSON property linkToDiscussion

Returns:

  • (String)


961
962
963
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 961

def link_to_discussion
  @link_to_discussion
end

#parentGoogle::Apis::DriveactivityV2::DriveItem

A Drive item, such as a file or folder. Corresponds to the JSON property parent



966
967
968
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 966

def parent
  @parent
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



973
974
975
976
977
978
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 973

def update!(**args)
  @legacy_comment_id = args[:legacy_comment_id] if args.key?(:legacy_comment_id)
  @legacy_discussion_id = args[:legacy_discussion_id] if args.key?(:legacy_discussion_id)
  @link_to_discussion = args[:link_to_discussion] if args.key?(:link_to_discussion)
  @parent = args[:parent] if args.key?(:parent)
end