Resource: CommentReply
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.
JSON representation |
---|
{ "replyId": string, "kind": string, "createdDate": string, "modifiedDate": string, "verb": string, "author": { object ( |
Fields | |
---|---|
replyId |
Output only. The ID of the reply. |
kind |
Output only. This is always |
createdDate |
Output only. The date when this reply was first created. |
modifiedDate |
Output only. The date when this reply was last modified. |
verb |
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:
|
author |
Output only. The author of the reply. The author's email address and permission ID will not be populated. |
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. |
htmlContent |
Output only. HTML formatted content for this reply. |
content |
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). |
Methods | |
---|---|
| Deletes a reply. |
| Gets a reply. |
| Creates a new reply to the given comment. |
| Lists all of the replies to a comment. |
| Updates an existing reply. |
| Updates an existing reply. |