pub struct Comment {Show 15 fields
pub anchor: Option<String>,
pub author: Option<User>,
pub comment_id: Option<String>,
pub content: Option<String>,
pub context: Option<CommentContext>,
pub created_date: Option<DateTime<Utc>>,
pub deleted: Option<bool>,
pub file_id: Option<String>,
pub file_title: Option<String>,
pub html_content: Option<String>,
pub kind: Option<String>,
pub modified_date: Option<DateTime<Utc>>,
pub replies: Option<Vec<CommentReply>>,
pub self_link: Option<String>,
pub status: Option<String>,
}Expand description
A comment on a file in Google Drive.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- delete comments (none)
- get comments (response)
- insert comments (request|response)
- list comments (none)
- patch comments (request|response)
- update comments (request|response)
Fields§
§anchor: Option<String>A region of the document represented as a JSON string. For details on defining anchor properties, refer to Manage comments and replies.
The user who wrote this comment.
comment_id: Option<String>The ID of the comment.
content: Option<String>The plain text content used to create this comment. This is not HTML safe and should only be used as a starting point to make edits to a comment’s content.
context: Option<CommentContext>Context of a file which is being commented on.
created_date: Option<DateTime<Utc>>The date when this comment was first created.
deleted: Option<bool>Whether this comment has been deleted. If a comment has been deleted the content will be cleared and this will only represent a comment that once existed.
file_id: Option<String>The file which this comment is addressing.
file_title: Option<String>The title of the file which this comment is addressing.
html_content: Option<String>HTML formatted content for this comment.
kind: Option<String>This is always drive#comment.
modified_date: Option<DateTime<Utc>>The date when this comment or any of its replies were last modified.
replies: Option<Vec<CommentReply>>Replies to this post.
self_link: Option<String>A link back to this comment.
status: Option<String>The status of this comment. Status can be changed by posting a reply to a comment with the desired status. Possible values are: * open - The comment is still open. * resolved - The comment has been resolved by one of its replies.