Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Snapshot

import type { Snapshot } from "https://googleapis.deno.dev/v1/games:v1.ts";

An snapshot object.

interface Snapshot {
coverImage?: SnapshotImage;
description?: string;
driveId?: string;
durationMillis?: bigint;
id?: string;
kind?: string;
lastModifiedMillis?: bigint;
progressValue?: bigint;
title?: string;
type?: "SAVE_GAME";
uniqueName?: string;
}

§Properties

§
coverImage?: SnapshotImage
[src]

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

§
description?: string
[src]

The description of this snapshot.

§
driveId?: string
[src]

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.

§
durationMillis?: bigint
[src]

The duration associated with this snapshot, in millis.

§
id?: string
[src]

The ID of the snapshot.

§
kind?: string
[src]

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

§
lastModifiedMillis?: bigint
[src]

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

§
progressValue?: bigint
[src]

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

§
title?: string
[src]

The title of this snapshot.

§
type?: "SAVE_GAME"
[src]

The type of this snapshot.

§
uniqueName?: string
[src]

The unique name provided when the snapshot was created.