# `Snodo.Client.Page`
[🔗](https://github.com/joshrotenberg/snodo/blob/v0.1.0/lib/snodo/client/page.ex#L1)

One page of a list operation returned by `Snodo.Client.list_page/3`.

`items` holds the listed definitions exactly as the server sent them.
`next_cursor` is `nil` on the last page. `result` is the whole JSON-RPC
`result` object, including cache hints and `_meta`.

# `t`

```elixir
@type t() :: %Snodo.Client.Page{
  items: [map()],
  next_cursor: String.t() | nil,
  result: map()
}
```

---

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