Interface StatusMention

Represents a mention of a user within the content of a status.

interface StatusMention {
    acct: string;
    id: string;
    url: string;
    username: string;
}

Properties

Properties

acct: string

The WebFinger acct: URI of the mentioned user. Equivalent to username for local users, or username@domain for remote users.

id: string

The account id of the mentioned user.

url: string

The location of the mentioned user's profile.

username: string

The username of the mentioned user.