Hunter.List (hunter v0.7.0)

Copy Markdown View Source

List entity

A list of some users that the authenticated user follows

Fields

  • id - the ID of the list
  • title - the user-defined title of the list
  • replies_policy - which replies should be shown in the list, one of: followed, list, none
  • exclusive - whether members of the list are removed from the home timeline

Summary

Types

t()

@type t() :: %Hunter.List{
  exclusive: boolean() | nil,
  id: String.t(),
  replies_policy: String.t(),
  title: String.t()
}