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

PlayerExperienceInfo

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

1P/3P metadata about the player's experience.

interface PlayerExperienceInfo {
currentExperiencePoints?: bigint;
currentLevel?: PlayerLevel;
kind?: string;
lastLevelUpTimestampMillis?: bigint;
nextLevel?: PlayerLevel;
}

§Properties

§
currentExperiencePoints?: bigint
[src]

The current number of experience points for the player.

§
currentLevel?: PlayerLevel
[src]

The current level of the player.

§
kind?: string
[src]

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

§
lastLevelUpTimestampMillis?: bigint
[src]

The timestamp when the player was leveled up, in millis since Unix epoch UTC.

§
nextLevel?: PlayerLevel
[src]

The next level of the player. If the current level is the maximum level, this should be same as the current level.