Class: Google::Apis::DriveV2::CommentReply
- Inherits:
-
Object
- Object
- Google::Apis::DriveV2::CommentReply
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/drive_v2/classes.rb,
lib/google/apis/drive_v2/representations.rb,
lib/google/apis/drive_v2/representations.rb
Overview
A comment on a file in Google Drive. Some resource methods (such as replies.
update
) require a replyId
. Use the replies.list
method to retrieve the ID
for a reply.
Instance Attribute Summary collapse
-
#author ⇒ Google::Apis::DriveV2::User
Information about a Drive user.
-
#content ⇒ String
The plain text content used to create this reply.
-
#created_date ⇒ DateTime
The date when this reply was first created.
-
#deleted ⇒ Boolean
(also: #deleted?)
Output only.
-
#html_content ⇒ String
Output only.
-
#kind ⇒ String
Output only.
-
#modified_date ⇒ DateTime
The date when this reply was last modified.
-
#reply_id ⇒ String
Output only.
-
#verb ⇒ String
The action this reply performed to the parent comment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CommentReply
constructor
A new instance of CommentReply.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CommentReply
Returns a new instance of CommentReply.
1284 1285 1286 |
# File 'lib/google/apis/drive_v2/classes.rb', line 1284 def initialize(**args) update!(**args) end |
Instance Attribute Details
#author ⇒ Google::Apis::DriveV2::User
Information about a Drive user.
Corresponds to the JSON property author
1234 1235 1236 |
# File 'lib/google/apis/drive_v2/classes.rb', line 1234 def @author end |
#content ⇒ String
The plain text content used to create this reply. This is not HTML safe and
should only be used as a starting point to make edits to a reply's content.
This field is required on inserts if no verb is specified (resolve/reopen).
Corresponds to the JSON property content
1241 1242 1243 |
# File 'lib/google/apis/drive_v2/classes.rb', line 1241 def content @content end |
#created_date ⇒ DateTime
The date when this reply was first created.
Corresponds to the JSON property createdDate
1246 1247 1248 |
# File 'lib/google/apis/drive_v2/classes.rb', line 1246 def created_date @created_date end |
#deleted ⇒ Boolean Also known as: deleted?
Output only. Whether this reply has been deleted. If a reply has been deleted
the content will be cleared and this will only represent a reply that once
existed.
Corresponds to the JSON property deleted
1253 1254 1255 |
# File 'lib/google/apis/drive_v2/classes.rb', line 1253 def deleted @deleted end |
#html_content ⇒ String
Output only. HTML formatted content for this reply.
Corresponds to the JSON property htmlContent
1259 1260 1261 |
# File 'lib/google/apis/drive_v2/classes.rb', line 1259 def html_content @html_content end |
#kind ⇒ String
Output only. This is always drive#commentReply
.
Corresponds to the JSON property kind
1264 1265 1266 |
# File 'lib/google/apis/drive_v2/classes.rb', line 1264 def kind @kind end |
#modified_date ⇒ DateTime
The date when this reply was last modified.
Corresponds to the JSON property modifiedDate
1269 1270 1271 |
# File 'lib/google/apis/drive_v2/classes.rb', line 1269 def modified_date @modified_date end |
#reply_id ⇒ String
Output only. The ID of the reply.
Corresponds to the JSON property replyId
1274 1275 1276 |
# File 'lib/google/apis/drive_v2/classes.rb', line 1274 def reply_id @reply_id end |
#verb ⇒ String
The action this reply performed to the parent comment. When creating a new
reply this is the action to be perform to the parent comment. Possible values
are: * resolve
- To resolve a comment. * reopen
- To reopen (un-resolve) a
comment.
Corresponds to the JSON property verb
1282 1283 1284 |
# File 'lib/google/apis/drive_v2/classes.rb', line 1282 def verb @verb end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 |
# File 'lib/google/apis/drive_v2/classes.rb', line 1289 def update!(**args) @author = args[:author] if args.key?(:author) @content = args[:content] if args.key?(:content) @created_date = args[:created_date] if args.key?(:created_date) @deleted = args[:deleted] if args.key?(:deleted) @html_content = args[:html_content] if args.key?(:html_content) @kind = args[:kind] if args.key?(:kind) @modified_date = args[:modified_date] if args.key?(:modified_date) @reply_id = args[:reply_id] if args.key?(:reply_id) @verb = args[:verb] if args.key?(:verb) end |