View Source Meilisearch.PaginatedTasks (meilisearch_ex v1.1.2)

Represents a Meilisearch paginated response.

Link to this section Summary

Link to this section Types

@type t() :: %Meilisearch.PaginatedTasks{
  from: integer(),
  limit: integer(),
  next: integer() | nil,
  results: [Meilisearch.Task.t()]
}

Link to this section Functions

Link to this function

cast(data, load_items \\ fn x -> Meilisearch.Task.cast(x) end)

View Source