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

This object describes a message that was deleted or is otherwise inaccessible to the bot.

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

- `chat`: Chat the message belonged to
- `message_id`: Unique message identifier inside the chat
- `date`: Always 0. The field can be used to differentiate regular and inaccessible messages.

# `t`

```elixir
@type t() :: %ExGram.Model.InaccessibleMessage{
  chat: ExGram.Model.Chat.t(),
  date: integer(),
  message_id: integer()
}
```

# `decode_as`

---

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