# `Hunter.Poll.Option`
[🔗](https://github.com/milmazz/hunter/blob/v0.8.0/lib/hunter/poll/option.ex#L1)

Poll option entity

A possible answer of a `Hunter.Poll`

## Fields

  * `title` - the text value of the poll option
  * `votes_count` - the number of received votes for this option, `nil`
    until the poll results are published

# `t`

```elixir
@type t() :: %Hunter.Poll.Option{
  title: String.t(),
  votes_count: non_neg_integer() | nil
}
```

---

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