History

@Serializable
data class History(val day: LocalDate, val usageCount: Long, val accountCount: Long)

Represents daily usage history of a hashtag.

Constructors

Link copied to clipboard
constructor(day: LocalDate, usageCount: Long, accountCount: Long)

Properties

Link copied to clipboard

the total of accounts using the tag within that day.

Link copied to clipboard
@Serializable(with = TimestampToLocalDateSerializer::class)
val day: LocalDate

Day the historical data was recorded on.

Link copied to clipboard

The counted usage of the tag within that day.