interface LeaderboardDto {
    actId: string;
    players: RankedV1.PlayerDto[];
    shard: string;
    totalPlayers: number;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

actId: string

The act id for the given leaderboard. Act ids can be found using the val-content API.

players: RankedV1.PlayerDto[]
shard: string

The shard for the given leaderboard.

totalPlayers: number

The total number of players in the leaderboard.