Show / Hide Table of Contents

Class ScoreSubmission

This is a JSON template for a request to submit a score to leaderboards.

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

Properties

ETag

The ETag of the item.

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

Kind

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

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

LeaderboardId

The leaderboard this score is being submitted to.

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

Score

The new score being submitted.

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

ScoreTag

Additional information about this score. Values will contain no more than 64 URI-safe characters as defined by section 2.3 of RFC 3986.

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

Signature

Signature Values will contain URI-safe characters as defined by section 2.3 of RFC 3986.

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

Implements

IDirectResponseSchema
Back to top