InterfaceRelationshipSeveranceEvent

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

interface RelationshipSeveranceEvent {
    createdAt: string;
    id: string;
    purged: boolean;
    relationshipsCount?: null | number;
    targetName: string;
    type: RelationshipSeveranceEventType;
}

Properties

createdAt: string

When the event took place.

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.

relationshipsCount?: null | number

Number of follow relationships (in either direction) that were severed.

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.