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

The message was originally sent by a known user.

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

- `type`: Type of the message origin, always "user”
- `date`: Date the message was sent originally in Unix time
- `sender_user`: User that sent the message originally

# `t`

```elixir
@type t() :: %ExGram.Model.MessageOriginUser{
  date: integer(),
  sender_user: ExGram.Model.User.t(),
  type: String.t()
}
```

# `decode_as`

---

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