Interface TagHistory

Represents daily usage history of a hashtag.

interface TagHistory {
    accounts: string;
    day: string;
    uses: string;
}

Properties

Properties

accounts: string

the total of accounts using the tag within that day.

day: string

UNIX timestamp on midnight of the given day.

uses: string

the counted usage of the tag within that day.