Interface FeaturedTag

Represents a hashtag that is featured on a profile.

interface FeaturedTag {
    id: string;
    lastStatusAt?: null | string;
    name: string;
    statusesCount: number;
}

Properties

id: string

The internal ID of the featured tag in the database.

lastStatusAt?: null | string

The timestamp of the last authored status containing this hashtag.

name: string

The name of the hashtag being featured.

statusesCount: number

The number of authored statuses containing this hashtag