Hunter.TermsOfService (hunter v0.7.0)

Copy Markdown View Source

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

Summary

Types

t()

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