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

TermsOfService entity

The terms of service of the instance

## Fields

  * `effective_date` - the date these terms of service are/were coming
    into effect
  * `effective` - whether these terms of service are currently in effect
  * `content` - the rendered HTML content of the terms of service
  * `succeeded_by` - if there are newer terms of service, their effective
    date

# `t`

```elixir
@type t() :: %Hunter.TermsOfService{
  content: String.t(),
  effective: boolean(),
  effective_date: String.t(),
  succeeded_by: String.t() | nil
}
```

---

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