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

DomainBlock entity

A domain that is blocked by the instance, as returned by the instance
domain blocks endpoint

## Fields

  * `domain` - the domain which is blocked; may be obfuscated or partially
    censored
  * `digest` - the SHA256 hash digest of the domain string
  * `severity` - the level to which the domain is blocked, one of:
    `silence`, `suspend`
  * `comment` - an optional reason for the domain block

# `t`

```elixir
@type t() :: %Hunter.DomainBlock{
  comment: String.t() | nil,
  digest: String.t(),
  domain: String.t(),
  severity: String.t()
}
```

---

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