Hunter.Tag (hunter v0.7.0)

Copy Markdown View Source

Tag entity

Fields

  • id - Database ID of the hashtag, useful for Admin API URLs
  • name - The hashtag, not including the preceding #
  • url - The URL of the hashtag
  • history - usage statistics for given days (last 7), a list of maps with day, uses and accounts keys
  • following - whether the current authorized user is following this tag
  • featuring - whether the current authorized user is featuring this tag on their profile

Summary

Types

t()

@type t() :: %Hunter.Tag{
  featuring: boolean() | nil,
  following: boolean() | nil,
  history: [map()] | nil,
  id: String.t() | nil,
  name: String.t(),
  url: String.t()
}