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

Decoded `/element-summary/{player_id}/` response.

`fixtures` is a list of upcoming fixtures, `history` is the per-gameweek
history for the current season, and `history_past` summarises previous
seasons. Items in each list are plain maps with the API's original
string keys preserved.

# `t`

```elixir
@type t() :: %ExFPL.PlayerSummary{
  fixtures: [map()],
  history: [map()],
  history_past: [map()]
}
```

---

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