masto
    Preparing search index...

    Interface AccountWarning

    Moderation warning against a particular account.

    interface AccountWarning {
        action: keyof AccountWarningActionRegistry;
        appeal?: Appeal | null;
        createdAt: string;
        id: string;
        statusIds: string[];
        targetAccount: mastodon.v1.Account;
        text: string;
    }
    Index

    Properties

    Action taken against the account.

    appeal?: Appeal | null

    Appeal submitted by the target account, if any.

    createdAt: string

    When the event took place.

    id: string

    The ID of the account warning in the database.

    statusIds: string[]

    List of status IDs that are relevant to the warning. When action is mark_statuses_as_sensitive or delete_statuses, those are the affected statuses.

    targetAccount: mastodon.v1.Account

    Account against which a moderation decision has been taken.

    text: string

    Message from the moderator to the target account.