Hunter.DomainBlock (hunter v0.7.0)

Copy Markdown View Source

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

Summary

Types

t()

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