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

Represents a chat member that isn't currently a member of the chat, but may join it themselves.

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

- `status`: The member's status in the chat, always "left”
- `user`: Information about the user

# `t`

```elixir
@type t() :: %ExGram.Model.ChatMemberLeft{
  status: String.t(),
  user: ExGram.Model.User.t()
}
```

# `decode_as`

---

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