Class: Google::Apis::DriveV3::Reply
- Inherits:
-
Object
- Object
- Google::Apis::DriveV3::Reply
- 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 reply to a comment on a file. 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
-
#action ⇒ String
The action the reply performed to the parent comment.
-
#author ⇒ Google::Apis::DriveV3::User
Information about a Drive user.
-
#content ⇒ String
The plain text content of the reply.
-
#created_time ⇒ DateTime
The time at which the reply was created (RFC 3339 date-time).
-
#deleted ⇒ Boolean
(also: #deleted?)
Output only.
-
#html_content ⇒ String
Output only.
-
#id ⇒ String
Output only.
-
#kind ⇒ String
Output only.
-
#modified_time ⇒ DateTime
The last time the reply was modified (RFC 3339 date-time).
Instance Method Summary collapse
-
#initialize(**args) ⇒ Reply
constructor
A new instance of Reply.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Reply
Returns a new instance of Reply.
3364 3365 3366 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3364 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
The action the reply performed to the parent comment. Valid values are: *
resolve
* reopen
Corresponds to the JSON property action
3317 3318 3319 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3317 def action @action end |
#author ⇒ Google::Apis::DriveV3::User
Information about a Drive user.
Corresponds to the JSON property author
3322 3323 3324 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3322 def @author end |
#content ⇒ String
The plain text content of the reply. This field is used for setting the
content, while htmlContent
should be displayed. This is required on creates
if no action
is specified.
Corresponds to the JSON property content
3329 3330 3331 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3329 def content @content end |
#created_time ⇒ DateTime
The time at which the reply was created (RFC 3339 date-time).
Corresponds to the JSON property createdTime
3334 3335 3336 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3334 def created_time @created_time end |
#deleted ⇒ Boolean Also known as: deleted?
Output only. Whether the reply has been deleted. A deleted reply has no
content.
Corresponds to the JSON property deleted
3340 3341 3342 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3340 def deleted @deleted end |
#html_content ⇒ String
Output only. The content of the reply with HTML formatting.
Corresponds to the JSON property htmlContent
3346 3347 3348 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3346 def html_content @html_content end |
#id ⇒ String
Output only. The ID of the reply.
Corresponds to the JSON property id
3351 3352 3353 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3351 def id @id end |
#kind ⇒ String
Output only. Identifies what kind of resource this is. Value: the fixed string
"drive#reply"
.
Corresponds to the JSON property kind
3357 3358 3359 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3357 def kind @kind end |
#modified_time ⇒ DateTime
The last time the reply was modified (RFC 3339 date-time).
Corresponds to the JSON property modifiedTime
3362 3363 3364 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3362 def modified_time @modified_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 |
# File 'lib/google/apis/drive_v3/classes.rb', line 3369 def update!(**args) @action = args[:action] if args.key?(:action) @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) end |