Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PlayerScore

import type { PlayerScore } from "https://googleapis.deno.dev/v1/games:v1.ts";

A player score.

interface PlayerScore {
formattedScore?: string;
kind?: string;
score?: bigint;
scoreTag?: string;
timeSpan?: "ALL_TIME" | "WEEKLY" | "DAILY";
}

§Properties

§
formattedScore?: string
[src]

The formatted score for this player score.

§
kind?: string
[src]

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

§
score?: bigint
[src]

The numerical value for this player score.

§
scoreTag?: string
[src]

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

§
timeSpan?: "ALL_TIME" | "WEEKLY" | "DAILY"
[src]

The time span for this player score.