We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
id
featuring
Tag
1 parent 1ee4a42 commit 4bcc23aCopy full SHA for 4bcc23a
1 file changed
src/mastodon/entities/v1/tag.ts
@@ -15,13 +15,16 @@ export interface TagHistory {
15
* @see https://docs.joinmastodon.org/entities/tag/
16
*/
17
export interface Tag {
18
+ /** ID of the hashtag in the database. Useful for constructing URLs for the moderation tools & Admin API. */
19
+ id: string;
20
/** The value of the hashtag after the # sign. */
21
name: string;
22
/** A link to the hashtag on the instance. */
23
url: string;
-
24
/** Usage statistics for given days. */
25
history?: TagHistory[] | null;
26
/** Whether the current token’s authorized user is following this tag. */
27
following?: boolean | null;
28
+ /** Whether the current token’s authorized user is featuring this tag on their profile. */
29
+ featuring?: boolean | null;
30
}
0 commit comments