Struct google_games1::Snapshot[][src]

pub struct Snapshot {
    pub kind: Option<String>,
    pub description: Option<String>,
    pub title: Option<String>,
    pub cover_image: Option<SnapshotImage>,
    pub last_modified_millis: Option<String>,
    pub id: Option<String>,
    pub drive_id: Option<String>,
    pub duration_millis: Option<String>,
    pub unique_name: Option<String>,
    pub type_: Option<String>,
    pub progress_value: Option<String>,
}

This is a JSON template for an snapshot object.

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

Uniquely identifies the type of this resource. Value is always the fixed string games#snapshot.

The description of this snapshot.

The title of this snapshot.

The cover image of this snapshot. May be absent if there is no image.

The timestamp (in millis since Unix epoch) of the last modification to this snapshot.

The ID of the snapshot.

The ID of the file underlying this snapshot in the Drive API. Only present if the snapshot is a view on a Drive file and the file is owned by the caller.

The duration associated with this snapshot, in millis.

The unique name provided when the snapshot was created.

The type of this snapshot. Possible values are:

  • "SAVE_GAME" - A snapshot representing a save game.

The progress value (64-bit integer set by developer) associated with this snapshot.

Trait Implementations

impl Default for Snapshot
[src]

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

impl Clone for Snapshot
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Snapshot
[src]

Formats the value using the given formatter. Read more

impl Resource for Snapshot
[src]

impl ResponseResult for Snapshot
[src]

Auto Trait Implementations

impl Send for Snapshot

impl Sync for Snapshot