View Source Meilisearch.Pagination (meilisearch_ex v1.1.2)

Represents a Meilisearch paginated response. Pagination

Link to this section Summary

Link to this section Types

@type t(item) :: %Meilisearch.Pagination{
  limit: integer(),
  offset: integer(),
  results: [item],
  total: integer()
}

Link to this section Functions

Link to this function

cast(data, caster \\ fn x -> x end)

View Source