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

Represents the scope of bot commands, covering a specific member of a group or supergroup chat.

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

- `type`: Scope type, must be chat_member
- `chat_id`: Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername). Channel direct messages chats and channel chats aren't supported.
- `user_id`: Unique identifier of the target user

# `t`

```elixir
@type t() :: %ExGram.Model.BotCommandScopeChatMember{
  chat_id: integer() | String.t(),
  type: String.t(),
  user_id: integer()
}
```

# `decode_as`

---

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