Interface Tag

Represents a hashtag used within the content of a status.

interface Tag {
    following?: null | boolean;
    history?: null | mastodon.v1.TagHistory[];
    name: string;
    url: string;
}

Properties

following?: null | boolean

Whether the current token’s authorized user is following this tag.

history?: null | mastodon.v1.TagHistory[]

Usage statistics for given days.

name: string

The value of the hashtag after the # sign.

url: string

A link to the hashtag on the instance.

Generated using TypeDoc