masto
    Preparing search index...

    Interface RelationshipSeveranceEvent

    Summary of a moderation or block event that caused follow relationships to be severed.

    interface RelationshipSeveranceEvent {
        createdAt: string;
        followersCount: number;
        followingCount: number;
        id: string;
        purged: boolean;
        targetName: string;
        type: keyof RelationshipSeveranceEventTypeRegistry;
    }
    Index

    Properties

    createdAt: string

    When the event took place.

    followersCount: number

    Number of followers that were removed as result of the event.

    followingCount: number

    Number of accounts the user stopped following as result of the event.

    id: string

    The ID of the relationship severance event in the database.

    purged: boolean

    Whether the list of severed relationships is unavailable because the underlying issue has been purged.

    targetName: string

    Name of the target of the moderation/block event. This is either a domain name or a user handle, depending on the event type.

    Type of event.