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

PlayerLevel

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

1P/3P metadata about a user's level.

interface PlayerLevel {
kind?: string;
level?: number;
maxExperiencePoints?: bigint;
minExperiencePoints?: bigint;
}

§Properties

§
kind?: string
[src]

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

§
level?: number
[src]

The level for the user.

§
maxExperiencePoints?: bigint
[src]

The maximum experience points for this level.

§
minExperiencePoints?: bigint
[src]

The minimum experience points for this level.