pub struct CommentReply {
pub author: Option<User>,
pub content: Option<String>,
pub created_date: Option<DateTime<Utc>>,
pub deleted: Option<bool>,
pub html_content: Option<String>,
pub kind: Option<String>,
pub modified_date: Option<DateTime<Utc>>,
pub reply_id: Option<String>,
pub verb: Option<String>,
}Expand description
A reply to 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).
- get replies (response)
- insert replies (request|response)
- patch replies (request|response)
- update replies (request|response)
Fields§
The user who wrote this reply.
content: Option<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).
created_date: Option<DateTime<Utc>>The date when this reply was first created.
deleted: Option<bool>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.
html_content: Option<String>HTML formatted content for this reply.
kind: Option<String>This is always drive#commentReply.
modified_date: Option<DateTime<Utc>>The date when this reply was last modified.
reply_id: Option<String>The ID of the reply.
verb: Option<String>The action this reply performed to the parent comment. When creating a new reply this is the action to be perform tSo the parent comment. Possible values are: * resolve - To resolve a comment. * reopen - To reopen (un-resolve) a comment.
Trait Implementations§
Source§impl Clone for CommentReply
impl Clone for CommentReply
Source§fn clone(&self) -> CommentReply
fn clone(&self) -> CommentReply
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more