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
| Attribute | Type | Description |
|---|---|---|
entries | List of ConquerHackLeaderboardEntry | A list of entries in the ConquerHack leaderboard, ordered from best-performing player to worst-performing player. |
