Struct rusoto_workdocs::Comment [] [src]

pub struct Comment {
    pub comment_id: String,
    pub contributor: Option<User>,
    pub created_timestamp: Option<f64>,
    pub parent_id: Option<String>,
    pub recipient_id: Option<String>,
    pub status: Option<String>,
    pub text: Option<String>,
    pub thread_id: Option<String>,
    pub visibility: Option<String>,
}

Describes a comment.

Fields

The ID of the comment.

The details of the user who made the comment.

The time that the comment was created.

The ID of the parent comment.

If the comment is a reply to another user's comment, this field contains the user ID of the user being replied to.

The status of the comment.

The text of the comment.

The ID of the root comment in the thread.

The visibility of the comment. Options are either PRIVATE, where the comment is visible only to the comment author and document owner and co-owners, or PUBLIC, where the comment is visible to document owners, co-owners, and contributors.

Trait Implementations

impl Default for Comment
[src]

[src]

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

impl Debug for Comment
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Comment
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Comment

impl Sync for Comment