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

This object represents a boost removed from a chat.

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

- `chat`: Chat which was boosted
- `boost_id`: Unique identifier of the boost
- `remove_date`: Point in time (Unix timestamp) when the boost was removed
- `source`: Source of the removed boost

# `t`

```elixir
@type t() :: %ExGram.Model.ChatBoostRemoved{
  boost_id: String.t(),
  chat: ExGram.Model.Chat.t(),
  remove_date: integer(),
  source: ExGram.Model.ChatBoostSource.t()
}
```

# `decode_as`

---

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