SubmitLeaderboardScoreResponse

A list of leaderboard entry resources.

JSON representation
{
  "kind": string,
  "beatenScoreTimeSpans": [
    enum (ScoreTimeSpan)
  ],
  "unbeatenScores": [
    {
      object (PlayerScore)
    }
  ],
  "formattedScore": string,
  "leaderboardId": string,
  "scoreTag": string
}
Fields
kind

string

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

beatenScoreTimeSpans[]

enum (ScoreTimeSpan)

The time spans where the submitted score is better than the existing score for that time span.

unbeatenScores[]

object (PlayerScore)

The scores in time spans that have not been beaten. As an example, the submitted score may be better than the player's DAILY score, but not better than the player's scores for the WEEKLY or ALL_TIME time spans.

formattedScore

string

The formatted value of the submitted score.

leaderboardId

string

The leaderboard ID that this score was submitted to.

scoreTag

string

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

PlayerScore

A player score.

JSON representation
{
  "kind": string,
  "timeSpan": enum (ScoreTimeSpan),
  "score": string,
  "formattedScore": string,
  "scoreTag": string
}
Fields
kind

string

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

timeSpan

enum (ScoreTimeSpan)

The time span for this player score.

score

string (int64 format)

The numerical value for this player score.

formattedScore

string

The formatted score for this player score.

scoreTag

string

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