Struct google_drive3_fork::Reply[][src]

pub struct Reply {
    pub kind: Option<String>,
    pub modified_time: Option<String>,
    pub author: Option<User>,
    pub deleted: Option<bool>,
    pub html_content: Option<String>,
    pub content: Option<String>,
    pub action: Option<String>,
    pub created_time: Option<String>,
    pub id: Option<String>,
}

A reply to 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

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

The last time the reply was modified (RFC 3339 date-time).

The user who created the reply.

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

The content of the reply with HTML formatting.

The plain text content of the reply. This field is used for setting the content, while htmlContent should be displayed. This is required on creates if no action is specified.

The action the reply performed to the parent comment. Valid values are:

  • resolve
  • reopen

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

The ID of the reply.

Trait Implementations

impl Default for Reply
[src]

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

impl Clone for Reply
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Reply
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Reply
[src]

impl ResponseResult for Reply
[src]

Auto Trait Implementations

impl Send for Reply

impl Sync for Reply