# `Gemini.Types.ListDocumentsResponse`
[🔗](https://github.com/nshkrdotcom/gemini_ex/blob/v0.11.0/lib/gemini/types/document.ex#L186)

Response type for listing documents in a RAG store.

# `t`
[🔗](https://github.com/nshkrdotcom/gemini_ex/blob/v0.11.0/lib/gemini/types/document.ex#L196)

```elixir
@type t() :: %Gemini.Types.ListDocumentsResponse{
  documents: [Gemini.Types.Document.t()],
  next_page_token: String.t() | nil
}
```

Response from listing documents.

# `from_api_response`
[🔗](https://github.com/nshkrdotcom/gemini_ex/blob/v0.11.0/lib/gemini/types/document.ex#L208)

```elixir
@spec from_api_response(map()) :: t()
```

Creates a ListDocumentsResponse from API response.

# `has_more_pages?`
[🔗](https://github.com/nshkrdotcom/gemini_ex/blob/v0.11.0/lib/gemini/types/document.ex#L223)

```elixir
@spec has_more_pages?(t()) :: boolean()
```

Checks if there are more pages available.

---

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