Struct google_drive3_fork::Comment[][src]

pub struct Comment {
    pub resolved: Option<bool>,
    pub kind: Option<String>,
    pub modified_time: Option<String>,
    pub author: Option<User>,
    pub deleted: Option<bool>,
    pub quoted_file_content: Option<CommentQuotedFileContent>,
    pub html_content: Option<String>,
    pub anchor: Option<String>,
    pub content: Option<String>,
    pub replies: Option<Vec<Reply>>,
    pub created_time: Option<String>,
    pub id: Option<String>,
}

A comment on a file.

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).

Fields

Whether the comment has been resolved by one of its replies.

Identifies what kind of resource this is. Value: the fixed string "drive#comment".

The last time the comment or any of its replies was modified (RFC 3339 date-time).

The user who created the comment.

Whether the comment has been deleted. A deleted comment has no content.

The file content to which the comment refers, typically within the anchor region. For a text file, for example, this would be the text at the location of the comment.

The content of the comment with HTML formatting.

A region of the document represented as a JSON string. See anchor documentation for details on how to define and interpret anchor properties.

The plain text content of the comment. This field is used for setting the content, while htmlContent should be displayed.

The full list of replies to the comment in chronological order.

The time at which the comment was created (RFC 3339 date-time).

The ID of the comment.

Trait Implementations

impl Default for Comment
[src]

Returns the "default value" for a type. Read more

impl Clone for Comment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Comment
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Comment
[src]

impl Resource for Comment
[src]

impl ResponseResult for Comment
[src]

Auto Trait Implementations

impl Send for Comment

impl Sync for Comment