# `ExFPL.ClassicStandings`
[🔗](https://github.com/sgerrand/ex_fpl/blob/main/lib/ex_fpl/classic_standings.ex#L1)

Decoded `/leagues-classic/{league_id}/standings/` response.

`league` describes the league itself; `standings` is the current page of
ranked entries; `has_next` indicates whether further pages exist.

# `t`

```elixir
@type t() :: %ExFPL.ClassicStandings{
  has_next: boolean(),
  league: map(),
  new_entries: [map()],
  page: integer(),
  standings: [ExFPL.ClassicStandings.Standing.t()]
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
