Class: Google::Apis::DriveactivityV2::FileComment
- Inherits:
-
Object
- Object
- Google::Apis::DriveactivityV2::FileComment
- 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
-
#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.
966 967 968 |
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 966 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
945 946 947 |
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 945 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
953 954 955 |
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 953 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
959 960 961 |
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 959 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
964 965 966 |
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 964 def parent @parent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
971 972 973 974 975 976 |
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 971 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 |