Interface GameLeaderboards

Information about a single game on leaderboards.

Hierarchy

  • GameLeaderboards

Properties

gameId: number

Steam ID of the game.

owners: null | number

Number of curator members that own this game.

avgPlaytime: null | number

Average playtime needed to complete the game by curator members.

badges: {
    points: null | number;
    total: null | number;
}

Information about game badges.

Type declaration

  • points: null | number

    Total points that badges of this game give.

  • total: null | number

    Total number of badges that this game has.

completions: {
    base: null | number;
    badges: null | number;
}

Information about game completions.

Type declaration

  • base: null | number

    Number of curator members that completed the base game.

  • badges: null | number

    Number of curator members that unlocked all game badges.

times: {
    shortestCompletion: null | number;
    longestCompletion: null | number;
    newestCompletion: null | Date;
    oldestCompletion: null | Date;
}

Type declaration

  • shortestCompletion: null | number

    The shortest time that a curator member needed to finish the game.

  • longestCompletion: null | number

    The longest time that a curator member needed to finish the game.

  • newestCompletion: null | Date

    Date of the newest base game completion.

  • oldestCompletion: null | Date

    Date of the oldest base game completion.

Generated using TypeDoc