Interface HistoryActionStoryLinkDelete

An action representing a Story Link being deleted.

interface HistoryActionStoryLinkDelete {
    action: "delete";
    entity_type: string;
    id: number;
    object_id?: number;
    subject_id?: number;
    verb: "blocks" | "duplicates" | "relates to";
}

Properties

action: "delete"

The action of the entity referenced.

entity_type: string

The type of entity referenced.

id: number

The ID of the entity referenced.

int64

object_id?: number

The Story ID of the object Story.

int64

subject_id?: number

The Story ID of the subject Story.

int64

verb: "blocks" | "duplicates" | "relates to"

The verb describing the link's relationship.