# `Hunter.FilterResult`
[🔗](https://github.com/milmazz/hunter/blob/v0.8.0/lib/hunter/filter_result.ex#L1)

FilterResult entity

A filter whose keywords matched a given status, part of `Hunter.Status`

## Fields

  * `filter` - the `Hunter.Filter` that was matched
  * `keyword_matches` - the keywords within the filter that were matched,
    if any
  * `status_matches` - the status IDs within the filter that were matched,
    if any

# `t`

```elixir
@type t() :: %Hunter.FilterResult{
  filter: Hunter.Filter.t(),
  keyword_matches: [String.t()] | nil,
  status_matches: [String.t()] | nil
}
```

---

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