Hunter.FilterResult (hunter v0.7.0)

Copy Markdown View Source

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

Summary

Types

t()

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