pub struct Reply {
pub action: Option<String>,
pub assignee_email_address: Option<String>,
pub author: Option<User>,
pub content: Option<String>,
pub created_time: Option<DateTime<Utc>>,
pub deleted: Option<bool>,
pub html_content: Option<String>,
pub id: Option<String>,
pub kind: Option<String>,
pub mentioned_email_addresses: Option<Vec<String>>,
pub modified_time: Option<DateTime<Utc>>,
}Expand description
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.
§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).
- create replies (request|response)
- get replies (response)
- update replies (request|response)
Fields§
§action: Option<String>The action the reply performed to the parent comment. The supported values are: * resolve * reopen
assignee_email_address: Option<String>Output only. The email address of the user assigned to this comment. If no user is assigned, the field is unset.
Output only. The author of the reply. The author’s email address and permission ID won’t be populated.
content: Option<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.
created_time: Option<DateTime<Utc>>The time at which the reply was created (RFC 3339 date-time).
deleted: Option<bool>Output only. Whether the reply has been deleted. A deleted reply has no content.
html_content: Option<String>Output only. The content of the reply with HTML formatting.
id: Option<String>Output only. The ID of the reply.
kind: Option<String>Output only. Identifies what kind of resource this is. Value: the fixed string "drive#reply".
mentioned_email_addresses: Option<Vec<String>>Output only. A list of email addresses for users mentioned in this comment. If no users are mentioned, the list is empty.
modified_time: Option<DateTime<Utc>>The last time the reply was modified (RFC 3339 date-time).