SubmitLeaderboardScoreResponse

排行榜条目资源列表。

JSON 表示法
{
  "kind": string,
  "beatenScoreTimeSpans": [
    enum (ScoreTimeSpan)
  ],
  "unbeatenScores": [
    {
      object (PlayerScore)
    }
  ],
  "formattedScore": string,
  "leaderboardId": string,
  "scoreTag": string
}
字段
kind

string

唯一标识此资源的类型。值始终为固定字符串 games#playerScoreResponse

beatenScoreTimeSpans[]

enum (ScoreTimeSpan)

提交的分数优于相应时间段的现有分数的时间段。

unbeatenScores[]

object (PlayerScore)

未被超越的时间段内的得分。例如,提交的得分可能高于玩家的 DAILY 得分,但不高于玩家在 WEEKLYALL_TIME 时间段内的得分。

formattedScore

string

提交的分数的格式化值。

leaderboardId

string

此得分已提交到的排行榜 ID。

scoreTag

string

有关此得分的更多信息。值不得超过 64 个 URI 安全字符(如 RFC 3986 的第 2.3 节所定义)。

PlayerScore

玩家得分。

JSON 表示法
{
  "kind": string,
  "timeSpan": enum (ScoreTimeSpan),
  "score": string,
  "formattedScore": string,
  "scoreTag": string
}
字段
kind

string

唯一标识此资源的类型。值始终为固定字符串 games#playerScore

timeSpan

enum (ScoreTimeSpan)

此球员得分的时段。

score

string (int64 format)

此玩家得分的数值。

formattedScore

string

此球员得分的格式化得分。

scoreTag

string

有关此得分的更多信息。值不得超过 64 个 URI 安全字符(如 RFC 3986 的第 2.3 节所定义)。