Resource: Reply
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.
| JSON representation |
|---|
{
"mentionedEmailAddresses"
:
[
string
]
,
"id"
:
string
,
"kind"
:
string
,
"createdTime"
:
string
,
"modifiedTime"
:
string
,
"action"
:
string
,
"author"
:
{
object (
|
mentionedEmailAddresses[]
string
Output only. A list of email addresses for users mentioned in this comment. If no users are mentioned, the list is empty.
id
string
Output only. The ID of the reply.
kind
string
Output only. Identifies what kind of resource this is. Value: the fixed string "drive#reply"
.
createdTime
string
Output only. The time at which the reply was created ( RFC 3339 date-time ).
modifiedTime
string
Output only. The last time the reply was modified ( RFC 3339 date-time ).
action
string
The action the reply performed to the parent comment. The supported values are:
-
resolve -
reopen
deleted
boolean
Output only. Whether the reply has been deleted. A deleted reply has no content.
htmlContent
string
Output only. The content of the reply with HTML formatting.
content
string
The plain text content of the reply. This field is used for setting the content, while htmlContent
should be displayed. This field is required by the create
method if no action
value is specified.
assigneeEmailAddress
string
Output only. The email address of the user assigned to this comment. If no user is assigned, the field is unset.
Methods |
|
|---|---|
|
Creates a reply to a comment. |
|
Deletes a reply. |
|
Gets a reply by ID. |
|
Lists a comment's replies. |
|
Updates a reply with patch semantics. |

