Show / Hide Table of Contents

Class LeaderboardScores

This is a JSON template for a ListScores response.

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

Properties

ETag

The ETag of the item.

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

Items

The scores in the leaderboard.

Declaration
public virtual IList<LeaderboardEntry> Items { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<LeaderboardEntry>

Kind

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

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

NextPageToken

The pagination token for the next page of results.

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

NumScores

The total number of scores in the leaderboard.

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

PlayerScore

The score of the requesting player on the leaderboard. The player's score may appear both here and in the list of scores above. If you are viewing a public leaderboard and the player is not sharing their gameplay information publicly, the scoreRank and formattedScoreRank values will not be present.

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

PrevPageToken

The pagination token for the previous page of results.

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

Implements

IDirectResponseSchema
Back to top