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

ScoreSubmission

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

A request to submit a score to leaderboards.

interface ScoreSubmission {
kind?: string;
leaderboardId?: string;
score?: bigint;
scoreTag?: string;
signature?: string;
}

§Properties

§
kind?: string
[src]

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

§
leaderboardId?: string
[src]

The leaderboard this score is being submitted to.

§
score?: bigint
[src]

The new score being submitted.

§
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.

§
signature?: string
[src]

Signature Values will contain URI-safe characters as defined by section 2.3 of RFC 3986.