Show / Hide Table of Contents

Class LeaderboardEntry

This is a JSON template for the Leaderboard Entry resource.

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

Properties

ETag

The ETag of the item.

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

FormattedScore

The localized string for the numerical value of this score.

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

FormattedScoreRank

The localized string for the rank of this score for this leaderboard.

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

Kind

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

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

Player

The player who holds this score.

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

ScoreRank

The rank of this score for this leaderboard.

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

ScoreTag

Additional information about the score. Values must 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

ScoreValue

The numerical value of this score.

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

TimeSpan

The time span of this high score. Possible values are: - "ALL_TIME" - The score is an all-time high score. - "WEEKLY" - The score is a weekly high score. - "DAILY" - The score is a daily high score.

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

WriteTimestampMillis

The timestamp at which this score was recorded, in milliseconds since the epoch in UTC.

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

Implements

IDirectResponseSchema
Back to top