# `ExGram.Model.OwnedGifts`
[🔗](https://github.com/rockneurotiko/ex_gram/blob/0.64.0/lib/ex_gram.ex#L5676)

Contains the list of gifts received and owned by a user or a chat.

Check the [documentation of this model on Telegram Bot API](https://core.telegram.org/bots/api#ownedgifts)

- `total_count`: The total number of gifts owned by the user or the chat
- `gifts`: The list of gifts
- `next_offset (optional)`: Optional. Offset for the next request. If empty, then there are no more results

# `t`

```elixir
@type t() :: %ExGram.Model.OwnedGifts{
  gifts: [ExGram.Model.OwnedGift.t()],
  next_offset: String.t() | nil,
  total_count: integer()
}
```

# `decode_as`

---

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