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

Field entity

A profile field as a name-value pair with optional verification, part of
`Hunter.Account`

## Fields

  * `name` - the key of a given field's key-value pair
  * `value` - the value associated with the `name` key; this will contain HTML
  * `verified_at` - timestamp of when the server verified a URL value for a
    rel="me" link, `nil` if not verified

# `t`

```elixir
@type t() :: %Hunter.Field{
  name: String.t(),
  value: String.t(),
  verified_at: String.t() | nil
}
```

---

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