Struct google_drive2::Change[][src]

pub struct Change {
    pub team_drive: Option<TeamDrive>,
    pub kind: Option<String>,
    pub deleted: Option<bool>,
    pub file: Option<File>,
    pub modification_date: Option<String>,
    pub team_drive_id: Option<String>,
    pub type_: Option<String>,
    pub id: Option<String>,
    pub self_link: Option<String>,
    pub file_id: Option<String>,
}

Representation of a change to a file or Team 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

The updated state of the Team Drive. Present if the type is teamDrive, the user is still a member of the Team Drive, and the Team Drive has not been deleted.

This is always drive#change.

Whether the file or Team Drive has been removed from this list of changes, for example by deletion or loss of access.

The updated state of the file. Present if the type is file and the file has not been removed from this list of changes.

The time of this modification.

The ID of the Team Drive associated with this change.

The type of the change. Possible values are file and teamDrive.

The ID of the change.

A link back to this change.

The ID of the file associated with this change.

Trait Implementations

impl Default for Change
[src]

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

impl Clone for Change
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Change
[src]

Formats the value using the given formatter. Read more

impl Resource for Change
[src]

impl ResponseResult for Change
[src]

Auto Trait Implementations

impl Send for Change

impl Sync for Change