REST 资源:快照

资源:快照

一个快照对象。

JSON 表示
{
  "id": string,
  "driveId": string,
  "kind": string,
  "type": enum (SnapshotType),
  "title": string,
  "description": string,
  "lastModifiedMillis": string,
  "durationMillis": string,
  "coverImage": {
    object (SnapshotImage)
  },
  "uniqueName": string,
  "progressValue": string
}
字段
id

字符串

快照的 ID。

driveId

字符串

此快照在 Drive API 中的基础文件的 ID。仅当快照是 Drive 文件的视图且文件归调用者所有时才存在。

kind

字符串

唯一标识此资源的类型。值始终是固定字符串 games#snapshot

type

枚举 (SnapshotType)

此快照的类型。

title

字符串

此快照的标题。

description

字符串

此快照的描述。

lastModifiedMillis

字符串 (int64 格式)

此快照上次修改的时间戳(自 Unix 纪元以来的毫秒数)。

durationMillis

字符串 (int64 格式)

与此快照关联的持续时间(以毫秒为单位)。

coverImage

对象 (SnapshotImage)

此快照的封面图片。如果没有图片,则可能不存在。

uniqueName

字符串

创建快照时提供的唯一名称。

progressValue

字符串 (int64 格式)

与此快照关联的进度值(由开发者设置的 64 位整数)。

SnapshotType

定义支持的快照类型。

枚举
SAVE_GAME 代表保存游戏的快照。

SnapshotImage

快照的图像。

JSON 表示
{
  "width": integer,
  "height": integer,
  "mime_type": string,
  "url": string,
  "kind": string
}
字段
width

整数

图像的宽度。

height

整数

图像的高度。

mime_type

字符串

图像的 MIME 类型。

url

字符串

图像的 URL。此 URL 随时可能失效,不应缓存。

kind

字符串

唯一标识此资源的类型。值始终是固定字符串 games#snapshotImage

方法

get

检索给定快照 ID 的元数据。

list

检索您的应用为对应于玩家 ID 的玩家创建的快照列表。