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

Represents a chat member that owns the chat and has all administrator privileges.

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

- `status`: The member's status in the chat, always "creator”
- `user`: Information about the user
- `is_anonymous`: True, if the user's presence in the chat is hidden
- `custom_title (optional)`: Optional. Custom title for this user

# `t`

```elixir
@type t() :: %ExGram.Model.ChatMemberOwner{
  custom_title: String.t() | nil,
  is_anonymous: boolean(),
  status: String.t(),
  user: ExGram.Model.User.t()
}
```

# `decode_as`

---

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