Show / Hide Table of Contents

Class Snapshot

This is a JSON template for an snapshot object.

Inheritance
System.Object
Snapshot
Implements
IDirectResponseSchema
Namespace: Google.Apis.Games.v1.Data
Assembly: Google.Apis.Games.v1.dll
Syntax
public class Snapshot : object, IDirectResponseSchema

Properties

CoverImage

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

Declaration
public virtual SnapshotImage CoverImage { get; set; }
Property Value
Type Description
SnapshotImage

Description

The description of this snapshot.

Declaration
public virtual string Description { get; set; }
Property Value
Type Description
System.String

DriveId

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.

Declaration
public virtual string DriveId { get; set; }
Property Value
Type Description
System.String

DurationMillis

The duration associated with this snapshot, in millis.

Declaration
public virtual Nullable<long> DurationMillis { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Id

The ID of the snapshot.

Declaration
public virtual string Id { get; set; }
Property Value
Type Description
System.String

Kind

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

Declaration
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

LastModifiedMillis

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

Declaration
public virtual Nullable<long> LastModifiedMillis { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ProgressValue

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

Declaration
public virtual Nullable<long> ProgressValue { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Title

The title of this snapshot.

Declaration
public virtual string Title { get; set; }
Property Value
Type Description
System.String

Type

The type of this snapshot. Possible values are: - "SAVE_GAME" - A snapshot representing a save game.

Declaration
public virtual string Type { get; set; }
Property Value
Type Description
System.String

UniqueName

The unique name provided when the snapshot was created.

Declaration
public virtual string UniqueName { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top