FeaturedTag

@Serializable
data class FeaturedTag(val tagId: String, val name: String, val statusesCount: Long, val lastStatusAt: LocalDate)

Represents a hashtag that is featured on a profile.

Constructors

Link copied to clipboard
constructor(tagId: String, name: String, statusesCount: Long, lastStatusAt: LocalDate)

Properties

Link copied to clipboard
val lastStatusAt: LocalDate

The time of the last authored status containing this hashtag.

Link copied to clipboard

The name of the hashtag being featured.

Link copied to clipboard

The number of authored statuses containing this hashtag.

Link copied to clipboard