Show / Hide Table of Contents

Class SnapshotsResource

The "snapshots" collection of methods.

Inheritance
System.Object
SnapshotsResource
Namespace: Google.Apis.Games.v1
Assembly: Google.Apis.Games.v1.dll
Syntax
public class SnapshotsResource : object

Constructors

SnapshotsResource(IClientService)

Constructs a new resource.

Declaration
public SnapshotsResource(IClientService service)
Parameters
Type Name Description
IClientService service

Methods

Get(String)

Retrieves the metadata for a given snapshot ID.

Declaration
public virtual SnapshotsResource.GetRequest Get(string snapshotId)
Parameters
Type Name Description
System.String snapshotId

The ID of the snapshot.

Returns
Type Description
SnapshotsResource.GetRequest

List(String)

Retrieves a list of snapshots created by your application for the player corresponding to the player ID.

Declaration
public virtual SnapshotsResource.ListRequest List(string playerId)
Parameters
Type Name Description
System.String playerId

A player ID. A value of me may be used in place of the authenticated player's ID.

Returns
Type Description
SnapshotsResource.ListRequest
Back to top