Skip to content

ConquerHackLeaderboard

python
class ConquerHackLeaderboard(BaseModel):
    entries: List[ConquerHackLeaderboardEntry]
java
public class ConquerHackLeaderboard {
    @NotNull public List<@NotNull ConquerHackLeaderboardEntry> entries;
}

Encapsulates information about the ConquerHack leaderboard, which tracks the performance of players in a game.

Attributes

AttributeTypeDescription
entriesList of ConquerHackLeaderboardEntryA list of entries in the ConquerHack leaderboard, ordered from best-performing player to worst-performing player.