# `Exandra.Tuple`
[🔗](https://github.com/vinniefranco/exandra/blob/v1.0.0/lib/exandra/tuple.ex#L1)

`Ecto.ParameterizedType` for tuples.

*Available since v0.11.0*.

## Options

* `:types` (list of `t:term/0`) - Required. The types of the elements in the tuple.

## Examples

    schema "user" do
      field :favorite_movie_with_score, Exandra.Tuple, types: [:string, :integer]
    end

# `t`
*since 0.11.0* 

```elixir
@type t() :: Tuple.t()
```

---

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