Hunter.FeaturedTag (hunter v0.7.0)

Copy Markdown View Source

FeaturedTag entity

A hashtag that is featured on a profile

Fields

  • id - the ID of the featured tag
  • name - the name of the hashtag being featured, without the #
  • url - link to all statuses by the user that contain the hashtag
  • statuses_count - number of authored statuses containing the hashtag
  • last_status_at - date of the last authored status containing the hashtag, if any

Summary

Types

t()

@type t() :: %Hunter.FeaturedTag{
  id: String.t(),
  last_status_at: String.t() | nil,
  name: String.t(),
  statuses_count: non_neg_integer(),
  url: String.t()
}