[][src]Struct google_drive2::CommentReply

pub struct CommentReply {
    pub kind: Option<String>,
    pub author: Option<User>,
    pub deleted: Option<bool>,
    pub html_content: Option<String>,
    pub content: Option<String>,
    pub verb: Option<String>,
    pub reply_id: Option<String>,
    pub modified_date: Option<String>,
    pub created_date: Option<String>,
}

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

Fields

kind: Option<String>

This is always drive#commentReply.

author: Option<User>

The author of the reply. The author's email address and permission ID will not be populated.

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.

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

verb: Option<String>

The action this reply performed to the parent comment. When creating a new reply this is the action to be perform to the parent comment. Possible values are:

  • "resolve" - To resolve a comment.
  • "reopen" - To reopen (un-resolve) a comment.
reply_id: Option<String>

The ID of the reply.

modified_date: Option<String>

The date when this reply was last modified.

created_date: Option<String>

The date when this reply was first created.

Trait Implementations

impl Clone for CommentReply[src]

impl Debug for CommentReply[src]

impl Default for CommentReply[src]

impl<'de> Deserialize<'de> for CommentReply[src]

impl RequestValue for CommentReply[src]

impl ResponseResult for CommentReply[src]

impl Serialize for CommentReply[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any