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

Contains information about the start page settings of a Telegram Business account.

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

- `title (optional)`: Optional. Title text of the business intro
- `message (optional)`: Optional. Message text of the business intro
- `sticker (optional)`: Optional. Sticker of the business intro

# `t`

```elixir
@type t() :: %ExGram.Model.BusinessIntro{
  message: String.t() | nil,
  sticker: ExGram.Model.Sticker.t() | nil,
  title: String.t() | nil
}
```

# `decode_as`

---

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