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

This object contains information about one answer option in a poll.

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

- `text`: Option text, 1-100 characters
- `voter_count`: Number of users that voted for this option
- `text_entities (optional)`: Optional. Special entities that appear in the option text. Currently, only custom emoji entities are allowed in poll option texts

# `t`

```elixir
@type t() :: %ExGram.Model.PollOption{
  text: String.t(),
  text_entities: [ExGram.Model.MessageEntity.t()] | nil,
  voter_count: integer()
}
```

# `decode_as`

---

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