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

This object is received when messages are deleted from a connected business account.

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

- `business_connection_id`: Unique identifier of the business connection
- `chat`: Information about a chat in the business account. The bot may not have access to the chat or the corresponding user.
- `message_ids`: The list of identifiers of deleted messages in the chat of the business account

# `t`

```elixir
@type t() :: %ExGram.Model.BusinessMessagesDeleted{
  business_connection_id: String.t(),
  chat: ExGram.Model.Chat.t(),
  message_ids: [integer()]
}
```

# `decode_as`

---

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