# `ExFPL.H2HStandings.Standing`
[🔗](https://github.com/sgerrand/ex_fpl/blob/main/lib/ex_fpl/h2h_standings.ex#L6)

A single entry's standing within a head-to-head league.

# `t`

```elixir
@type t() :: %ExFPL.H2HStandings.Standing{
  division: integer() | nil,
  entry: integer(),
  entry_name: String.t(),
  id: integer(),
  last_rank: integer() | nil,
  matches_drawn: integer(),
  matches_lost: integer(),
  matches_played: integer(),
  matches_won: integer(),
  player_name: String.t(),
  points_for: integer(),
  rank: integer() | nil,
  rank_sort: integer() | nil,
  total: integer()
}
```

---

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