Class: Google::Apis::DriveactivityV2::FileComment
- Inherits:
-
Object
- Object
- Google::Apis::DriveactivityV2::FileComment
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/driveactivity_v2/classes.rb,
generated/google/apis/driveactivity_v2/representations.rb,
generated/google/apis/driveactivity_v2/representations.rb
Overview
A comment on a file.
Instance Attribute Summary collapse
-
#legacy_comment_id ⇒ String
The comment in the discussion thread.
-
#legacy_discussion_id ⇒ String
The discussion thread to which the comment was added.
-
#link_to_discussion ⇒ String
The link to the discussion thread containing this comment, for example, "https: //docs.google.com/DOCUMENT_ID/edit?disco=THREAD_ID".
-
#parent ⇒ Google::Apis::DriveactivityV2::DriveItem
A Drive item, such as a file or folder.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FileComment
constructor
A new instance of FileComment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FileComment
Returns a new instance of FileComment.
784 785 786 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 784 def initialize(**args) update!(**args) end |
Instance Attribute Details
#legacy_comment_id ⇒ String
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
763 764 765 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 763 def legacy_comment_id @legacy_comment_id end |
#legacy_discussion_id ⇒ String
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
771 772 773 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 771 def legacy_discussion_id @legacy_discussion_id end |
#link_to_discussion ⇒ String
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
777 778 779 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 777 def link_to_discussion @link_to_discussion end |
#parent ⇒ Google::Apis::DriveactivityV2::DriveItem
A Drive item, such as a file or folder.
Corresponds to the JSON property parent
782 783 784 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 782 def parent @parent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
789 790 791 792 793 794 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 789 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 |