Source code for asyncpixel.models.players.battleground

"""Battleground."""
from pydantic import BaseModel


[docs]class Battleground(BaseModel): """Battleground games stats. Args: coins (int): Number of coins gathered in this Game Mode. Defaults to 0. """ coins: int = 0