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

Represents a chat member that has no additional privileges or restrictions.

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

- `status`: The member's status in the chat, always "member”
- `user`: Information about the user
- `tag (optional)`: Optional. Tag of the member
- `until_date (optional)`: Optional. Date when the user's subscription will expire; Unix time

# `t`

```elixir
@type t() :: %ExGram.Model.ChatMemberMember{
  status: String.t(),
  tag: String.t() | nil,
  until_date: integer() | nil,
  user: ExGram.Model.User.t()
}
```

# `decode_as`

---

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