# `ExGram.Model.RichTextEmailAddress`
[🔗](https://github.com/rockneurotiko/ex_gram/blob/0.67.0/lib/ex_gram.ex#L6985)

A text with an email address.

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

- `type`: Type of the rich text, always "email_address”
- `text`: The text
- `email_address`: The email address

# `t`

```elixir
@type t() :: %ExGram.Model.RichTextEmailAddress{
  email_address: String.t(),
  text: ExGram.Model.RichText.t(),
  type: String.t()
}
```

# `decode_as`

---

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